結果

問題 No.504 ゲーム大会(ランキング)
ユーザー convexineqconvexineq
提出日時 2021-02-12 05:12:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 86,576 KB
実行使用メモリ 77,516 KB
最終ジャッジ日時 2023-09-25 19:06:50
合計ジャッジ時間 5,368 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
70,920 KB
testcase_01 AC 74 ms
70,596 KB
testcase_02 AC 76 ms
70,804 KB
testcase_03 AC 73 ms
71,144 KB
testcase_04 AC 73 ms
70,840 KB
testcase_05 AC 74 ms
71,172 KB
testcase_06 AC 71 ms
70,892 KB
testcase_07 AC 303 ms
77,436 KB
testcase_08 AC 305 ms
77,380 KB
testcase_09 AC 303 ms
77,160 KB
testcase_10 AC 304 ms
77,248 KB
testcase_11 AC 294 ms
77,468 KB
testcase_12 AC 298 ms
77,140 KB
testcase_13 AC 284 ms
76,632 KB
testcase_14 AC 301 ms
77,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = 1
K = int(input())
print(ans)
for i in range(n-1):
    if K < int(input()): ans += 1
    print(ans)
0