結果

問題 No.504 ゲーム大会(ランキング)
ユーザー dangodango
提出日時 2023-06-06 19:32:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-06-09 06:17:25
合計ジャッジ時間 2,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,064 KB
testcase_01 AC 38 ms
52,196 KB
testcase_02 AC 39 ms
53,004 KB
testcase_03 AC 38 ms
52,568 KB
testcase_04 AC 39 ms
51,976 KB
testcase_05 AC 39 ms
51,952 KB
testcase_06 AC 39 ms
52,016 KB
testcase_07 AC 125 ms
79,488 KB
testcase_08 AC 124 ms
79,540 KB
testcase_09 AC 123 ms
79,492 KB
testcase_10 AC 118 ms
79,364 KB
testcase_11 AC 124 ms
79,616 KB
testcase_12 AC 121 ms
79,596 KB
testcase_13 AC 119 ms
79,456 KB
testcase_14 AC 126 ms
79,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
RANK = 1
SCORE = []
for i in range(N):
	SCORE.append(int(input()))
K = SCORE[0]
for J in range(N):
	if K < SCORE[J]:
		RANK += 1
	print(RANK)
	
0