結果
| 問題 | No.504 ゲーム大会(ランキング) |
| コンテスト | |
| ユーザー |
brthyyjp
|
| 提出日時 | 2020-07-25 07:12:27 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 196 ms / 2,000 ms |
| + 869µs | |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 248 ms |
| コンパイル使用メモリ | 95,856 KB |
| 実行使用メモリ | 84,352 KB |
| 最終ジャッジ日時 | 2026-07-30 11:41:13 |
| 合計ジャッジ時間 | 4,392 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 |
ソースコード
n = int(input())
a = int(input())
temp = 1
print(temp)
for i in range(n-1):
x = int(input())
if x > a:
temp += 1
print(temp)
brthyyjp