結果

問題 No.504 ゲーム大会(ランキング)
ユーザー sawa_tsukasawa_tsuka
提出日時 2017-04-21 22:28:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 476 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 10,624 KB
実行使用メモリ 7,960 KB
最終ジャッジ日時 2023-09-27 11:17:27
合計ジャッジ時間 5,036 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,876 KB
testcase_01 AC 16 ms
7,904 KB
testcase_02 AC 14 ms
7,892 KB
testcase_03 AC 13 ms
7,800 KB
testcase_04 AC 14 ms
7,900 KB
testcase_05 AC 13 ms
7,832 KB
testcase_06 AC 13 ms
7,960 KB
testcase_07 AC 476 ms
7,760 KB
testcase_08 AC 466 ms
7,796 KB
testcase_09 AC 462 ms
7,876 KB
testcase_10 AC 466 ms
7,864 KB
testcase_11 AC 465 ms
7,956 KB
testcase_12 AC 472 ms
7,784 KB
testcase_13 AC 464 ms
7,804 KB
testcase_14 AC 467 ms
7,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
n=int(input())
l=int(input());
v=1;
print(1)
for i in range(n-1):
    d=int(input())
    if d>l:
        v+=1
    print(v)
0