結果
| 問題 |
No.504 ゲーム大会(ランキング)
|
| コンテスト | |
| ユーザー |
shika_126
|
| 提出日時 | 2022-03-27 07:50:08 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 140 bytes |
| コンパイル時間 | 258 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 18,484 KB |
| 最終ジャッジ日時 | 2024-11-06 02:52:18 |
| 合計ジャッジ時間 | 4,236 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | AC * 2 WA * 3 TLE * 1 -- * 7 |
ソースコード
n = int(input())
k = int(input())
l = [k]
print(1)
for i in range(n-1):
l.append(int(input()))
l = sorted(l)
print(l.index(k)+1)
shika_126