0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AtCoder参加記録 No.2 ーABC214

Last updated at Posted at 2021-08-16

#ABC214
今回参加したABC214についての参加記録

2021年8月14日(土)のAtCoder Beginner Contest 214でした。

##結果

A,B問題を正解
レート:16→28 (+12) Highest!
順位:7073/ 8405
時間: A問題53:33 B問題70:09
パフォーマンス:90

##詳細

###A問題
問題

提出コード(AC)

A問題.py
a = int(input())
if a>=212:
  print(8)
elif a>=126:
  print(6)
else:
  print(4)

提出コード詳細

###B問題

問題

提出1回目(WA)

B問題_1.py
s,t = map(int,input().split())
x=0
for a in range(100):
  for b in range(100):
    for c in range(100):
      if a*b*c<=t:
        if a+b+c <=s:
          x +=1
        else:
          x=x
      else:
        x=x
print(x)

詳細

2回目(AC)

B問題_2.py
s,t = map(int,input().split())
x=0
for a in range(101):
  for b in range(101):
    for c in range(101):
      if a*b*c<=t:
        if a+b+c <=s:
          x +=1
        else:
          x=x
      else:
        x=x
print(x)

詳細

###C問題

解法が全く思いつかずに未回答

##振り返り、反省
今回もバイト後の参加のためスタートが遅れてしまい、だいぶ遅い時間からの参加になってしまった。

A問題は普通に解くことができ、B問題で1回ミスしてしまった。

A問題については特になし

B問題はfor文の回す回数が0~100の101回なのに初めの提出時には100回で回していたためWAとなってしまった。
全体同様凡ミスが原因である。

C問題については解法が分からなかったためC問題が解けるように勉強していきたい

##感想

凡ミスをなくす努力をしたい。
コンテスト以外にも問題をといて経験を積みたい。
月に1,2回バイトを入れずにコンテストに参加することにした

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?