結果

問題 No.504 ゲーム大会(ランキング)
ユーザー nebukuro09
提出日時 2017-04-21 22:22:44
言語 Python2
(2.7.18)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-20 05:16:11
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

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