結果

問題 No.504 ゲーム大会(ランキング)
ユーザー rocoderrocoder
提出日時 2017-05-04 06:37:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 10,492 KB
実行使用メモリ 12,344 KB
最終ジャッジ日時 2023-10-12 08:08:25
合計ジャッジ時間 3,625 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,824 KB
testcase_01 AC 15 ms
7,804 KB
testcase_02 AC 15 ms
7,932 KB
testcase_03 AC 15 ms
7,928 KB
testcase_04 AC 15 ms
7,844 KB
testcase_05 AC 16 ms
7,844 KB
testcase_06 AC 16 ms
7,780 KB
testcase_07 AC 274 ms
12,228 KB
testcase_08 AC 280 ms
12,104 KB
testcase_09 AC 279 ms
12,044 KB
testcase_10 AC 269 ms
12,192 KB
testcase_11 AC 278 ms
12,080 KB
testcase_12 AC 273 ms
12,000 KB
testcase_13 AC 261 ms
12,344 KB
testcase_14 AC 274 ms
12,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = [int(input()) for i in range(N)]
j=1
for i in range(len(a)):
    if a[0]<a[i]:
        j=j+1
    print(j)
    i=i+1
0