結果
問題 | No.504 ゲーム大会(ランキング) |
ユーザー | Fumiya Ogyu |
提出日時 | 2017-08-25 12:27:38 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 209 bytes |
コンパイル時間 | 129 ms |
コンパイル使用メモリ | 6,948 KB |
実行使用メモリ | 17,188 KB |
最終ジャッジ日時 | 2024-10-15 15:36:41 |
合計ジャッジ時間 | 4,349 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
13,636 KB |
testcase_01 | AC | 11 ms
6,820 KB |
testcase_02 | AC | 12 ms
6,820 KB |
testcase_03 | AC | 11 ms
6,820 KB |
testcase_04 | AC | 11 ms
6,816 KB |
testcase_05 | AC | 11 ms
6,820 KB |
testcase_06 | AC | 12 ms
6,820 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
n = input() rank = [] for i in range(n): rank.append([i, input()]) rank.sort(key = lambda x:-x[1]) for j in range(len(rank)): if rank[j][0] == 0: print j + 1 break