結果

問題 No.504 ゲーム大会(ランキング)
ユーザー rlangevinrlangevin
提出日時 2024-07-15 15:41:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 916 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 76,504 KB
最終ジャッジ日時 2024-07-15 15:41:48
合計ジャッジ時間 4,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,200 KB
testcase_01 AC 47 ms
52,688 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 36 ms
53,120 KB
testcase_04 AC 38 ms
52,444 KB
testcase_05 AC 37 ms
53,228 KB
testcase_06 AC 47 ms
52,488 KB
testcase_07 AC 275 ms
76,164 KB
testcase_08 AC 287 ms
76,068 KB
testcase_09 AC 269 ms
76,468 KB
testcase_10 AC 292 ms
76,040 KB
testcase_11 AC 270 ms
76,504 KB
testcase_12 AC 288 ms
76,488 KB
testcase_13 AC 257 ms
75,952 KB
testcase_14 AC 277 ms
76,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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