結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー |
![]() |
提出日時 | 2015-10-13 20:32:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 255 bytes |
コンパイル時間 | 117 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-21 07:33:48 |
合計ジャッジ時間 | 2,119 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 3 WA * 8 |
ソースコード
N = int(input()) s, si = 0, -1 for i in range(N): a, b = map(int, input().split()) ss = a - 30000 * b if ss > s: s = ss si = i if s >= 30000 * 100: print('YES') print('\n'.join([str(si + 1)] * 6)) else: print('NO')