結果

問題 No.504 ゲーム大会(ランキング)
ユーザー nebukuro09nebukuro09
提出日時 2017-04-21 22:22:44
言語 Python2
(2.7.18)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 6,616 KB
実行使用メモリ 6,160 KB
最終ジャッジ日時 2023-09-27 11:08:13
合計ジャッジ時間 3,156 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,928 KB
testcase_01 AC 10 ms
6,096 KB
testcase_02 AC 9 ms
6,056 KB
testcase_03 AC 10 ms
5,968 KB
testcase_04 AC 9 ms
6,004 KB
testcase_05 AC 10 ms
6,120 KB
testcase_06 AC 9 ms
5,928 KB
testcase_07 AC 191 ms
6,120 KB
testcase_08 AC 187 ms
6,048 KB
testcase_09 AC 188 ms
5,964 KB
testcase_10 AC 191 ms
6,156 KB
testcase_11 AC 186 ms
5,960 KB
testcase_12 AC 185 ms
6,120 KB
testcase_13 AC 191 ms
6,008 KB
testcase_14 AC 191 ms
6,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
a = input()
ans = 1
print 1
for i in xrange(n-1):
    b = int(raw_input())
    if (b > a):
        ans += 1
    print ans
0