結果
| 問題 | No.504 ゲーム大会(ランキング) | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-07-09 10:17:07 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 335 ms / 2,000 ms | 
| コード長 | 135 bytes | 
| コンパイル時間 | 114 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 15,488 KB | 
| 最終ジャッジ日時 | 2024-07-01 13:55:20 | 
| 合計ジャッジ時間 | 4,309 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 13 | 
ソースコード
N = int(input())
A = [int(input()) for _ in range(N)]
x = A[0]
j = 1
print(j)
for a in A[1:]:
    if a > x:
        j += 1
    print(j)
            
            
            
        