結果
問題 |
No.504 ゲーム大会(ランキング)
|
ユーザー |
![]() |
提出日時 | 2019-10-10 11:39:36 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 205 bytes |
コンパイル時間 | 459 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 25,728 KB |
最終ジャッジ日時 | 2024-11-20 19:53:02 |
合計ジャッジ時間 | 25,500 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 5 TLE * 8 |
ソースコード
# No.504 ゲーム大会(ランキング) n = int(input()) a = [int(input()) for i in range(n)] score_k = a[0] for i in range(1, n + 1): b = sorted(a[:i], reverse=True) print(b.index(score_k) + 1)