結果
問題 |
No.231 めぐるはめぐる (1)
|
ユーザー |
|
提出日時 | 2018-02-24 18:43:19 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 178 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-15 04:30:43 |
合計ジャッジ時間 | 2,530 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 3 WA * 8 |
ソースコード
n=int(input()) d=[(x-int(y*3e4)) for x,y in [map(int,input().split()) for i in'.'*n]] if max(d)*6<3e6: print('NO') else: print('YES') for i in'.'*n:print(d.index(max(d))+1)