結果

問題 No.504 ゲーム大会(ランキング)
ユーザー KazunKazun
提出日時 2020-10-03 03:37:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 78,632 KB
最終ジャッジ日時 2024-07-18 04:02:13
合計ジャッジ時間 2,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,000 KB
testcase_01 AC 34 ms
52,012 KB
testcase_02 AC 36 ms
52,960 KB
testcase_03 AC 34 ms
52,564 KB
testcase_04 AC 36 ms
52,804 KB
testcase_05 AC 32 ms
52,020 KB
testcase_06 AC 37 ms
52,088 KB
testcase_07 AC 105 ms
78,632 KB
testcase_08 AC 99 ms
78,624 KB
testcase_09 AC 97 ms
78,292 KB
testcase_10 AC 98 ms
78,340 KB
testcase_11 AC 97 ms
78,408 KB
testcase_12 AC 93 ms
78,424 KB
testcase_13 AC 94 ms
77,692 KB
testcase_14 AC 95 ms
78,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
alpha=int(input())
X=[0]*N

K=1
X[0]=1

for i in range(N-1):
    a=int(input())
    if a>alpha:
        K+=1
    X[i+1]=K

print("\n".join(map(str,X)))
0