結果
問題 |
No.504 ゲーム大会(ランキング)
|
ユーザー |
![]() |
提出日時 | 2020-09-05 15:25:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 185 bytes |
コンパイル時間 | 309 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 24,904 KB |
最終ジャッジ日時 | 2024-11-28 16:27:25 |
合計ジャッジ時間 | 26,090 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 5 TLE * 8 |
ソースコード
N = int(input().strip()) a = [] d = [] for i in range(N): a.append(int(input().strip())) b = a[0] c = sorted(a, reverse=True) d.append(c.index(b) + 1) for i in d: print(i)