結果
| 問題 | No.504 ゲーム大会(ランキング) |
| コンテスト | |
| ユーザー |
matsukin1111
|
| 提出日時 | 2018-12-06 15:46:57 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 251 ms / 2,000 ms |
| コード長 | 196 bytes |
| 記録 | |
| コンパイル時間 | 447 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 18,652 KB |
| 最終ジャッジ日時 | 2026-04-04 09:36:24 |
| 合計ジャッジ時間 | 4,040 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge5_1 |
| 純コード判定待ち |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 |
ソースコード
number = int(input())
score = []
for i in range(number):
score.append( int(input()) )
rank = 1
print(rank)
for i in range(number-1):
if(score[i+1] > score[0]): rank += 1
print(rank)
matsukin1111