結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー |
|
提出日時 | 2018-06-03 12:11:19 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 34 ms / 1,000 ms |
コード長 | 233 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-06-30 09:16:36 |
合計ジャッジ時間 | 1,588 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 11 |
ソースコード
n = int(input()) D = [map(int, input().split()) for i in range(n)] d = [g - 30000 * d for g, d in D] v = max(d) if v * 6 >= 30000 * 100: print("YES") for _ in range(6): print(d.index(max(d))+1) else: print("NO")