結果
| 問題 | No.504 ゲーム大会(ランキング) |
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-20 21:12:30 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 107 ms / 2,000 ms |
| コード長 | 187 bytes |
| 記録 | |
| コンパイル時間 | 258 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 85,560 KB |
| 最終ジャッジ日時 | 2026-07-07 13:09:05 |
| 合計ジャッジ時間 | 3,549 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 |
ソースコード
n = int(input())
scores = [int(input()) for _ in range(n)]
k_score = scores[0]
count = 0
print(1)
for i in range(1, n):
if scores[i] > k_score:
count += 1
print(count + 1)
lam6er