結果

問題 No.504 ゲーム大会(ランキング)
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-25 07:12:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 76,436 KB
最終ジャッジ日時 2024-06-26 09:55:33
合計ジャッジ時間 4,187 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,048 KB
testcase_01 AC 35 ms
53,100 KB
testcase_02 AC 35 ms
53,348 KB
testcase_03 AC 34 ms
52,196 KB
testcase_04 AC 36 ms
52,684 KB
testcase_05 AC 38 ms
52,668 KB
testcase_06 AC 39 ms
51,952 KB
testcase_07 AC 273 ms
76,436 KB
testcase_08 AC 280 ms
76,028 KB
testcase_09 AC 275 ms
76,032 KB
testcase_10 AC 259 ms
76,336 KB
testcase_11 AC 267 ms
76,316 KB
testcase_12 AC 271 ms
76,056 KB
testcase_13 AC 255 ms
76,140 KB
testcase_14 AC 273 ms
76,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = int(input())
temp = 1
print(temp)
for i in range(n-1):
    x = int(input())
    if x > a:
        temp += 1
    print(temp)    
0