結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | rpy3cpp |
提出日時 | 2015-06-26 22:42:02 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 382 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-07 17:47:43 |
合計ジャッジ時間 | 2,292 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 29 ms
10,624 KB |
testcase_02 | AC | 26 ms
10,496 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 27 ms
10,496 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 26 ms
10,496 KB |
testcase_12 | WA | - |
ソースコード
def read_data(): N = int(input()) Es = [] for i in range(N): g, d = map(int, input().split()) Es.append((g - 30000 * d, i + 1)) return N, Es def solve(N, Es): Es.sort(reverse=True) x = 30000*100 e, i = Es[0] if e * 6 < x: print('NO') else: for t in range(6): print(i) N, Es = read_data() solve(N, Es)