結果

問題 No.504 ゲーム大会(ランキング)
ユーザー gorugo30gorugo30
提出日時 2021-02-24 09:53:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,620 KB
実行使用メモリ 75,824 KB
最終ジャッジ日時 2023-10-24 17:22:00
合計ジャッジ時間 4,080 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,344 KB
testcase_01 AC 37 ms
53,344 KB
testcase_02 AC 37 ms
53,344 KB
testcase_03 AC 37 ms
53,344 KB
testcase_04 AC 37 ms
53,344 KB
testcase_05 AC 37 ms
53,344 KB
testcase_06 AC 38 ms
53,344 KB
testcase_07 AC 288 ms
75,824 KB
testcase_08 AC 282 ms
75,792 KB
testcase_09 AC 283 ms
75,820 KB
testcase_10 AC 279 ms
75,796 KB
testcase_11 AC 283 ms
75,804 KB
testcase_12 AC 275 ms
75,784 KB
testcase_13 AC 270 ms
75,768 KB
testcase_14 AC 285 ms
75,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a0 = int(input())
ans = 1
print(ans)
for i in range(N - 1):
    a = int(input())
    if a > a0:
        ans += 1
    print(ans)
0