結果

問題 No.504 ゲーム大会(ランキング)
ユーザー RK PythonRK Python
提出日時 2020-06-07 16:06:36
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 10,676 KB
実行使用メモリ 19,716 KB
最終ジャッジ日時 2023-08-25 10:59:43
合計ジャッジ時間 3,211 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,864 KB
testcase_01 AC 15 ms
7,828 KB
testcase_02 AC 15 ms
7,788 KB
testcase_03 AC 16 ms
7,872 KB
testcase_04 AC 15 ms
7,784 KB
testcase_05 AC 16 ms
7,848 KB
testcase_06 AC 16 ms
7,808 KB
testcase_07 AC 239 ms
18,388 KB
testcase_08 AC 238 ms
17,644 KB
testcase_09 AC 237 ms
18,276 KB
testcase_10 AC 230 ms
16,564 KB
testcase_11 AC 241 ms
19,132 KB
testcase_12 AC 238 ms
19,716 KB
testcase_13 AC 228 ms
16,160 KB
testcase_14 AC 241 ms
18,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = [0]*(N)
rank = 1
score = int(input())
for i in range(N-1):
    ans[i] = rank
    if int(input()) > score:
        rank += 1
ans[-1] = rank
print("\n".join(map(str, ans)))
0