結果

問題 No.504 ゲーム大会(ランキング)
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-25 07:12:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 87,080 KB
実行使用メモリ 77,356 KB
最終ジャッジ日時 2023-09-08 17:05:32
合計ジャッジ時間 5,200 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,836 KB
testcase_01 AC 71 ms
71,060 KB
testcase_02 AC 67 ms
71,088 KB
testcase_03 AC 66 ms
70,948 KB
testcase_04 AC 67 ms
70,816 KB
testcase_05 AC 68 ms
71,092 KB
testcase_06 AC 70 ms
70,976 KB
testcase_07 AC 294 ms
77,356 KB
testcase_08 AC 293 ms
77,356 KB
testcase_09 AC 287 ms
77,256 KB
testcase_10 AC 281 ms
76,968 KB
testcase_11 AC 298 ms
77,332 KB
testcase_12 AC 282 ms
76,668 KB
testcase_13 AC 278 ms
77,040 KB
testcase_14 AC 285 ms
77,244 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