結果
| 問題 |
No.231 めぐるはめぐる (1)
|
| コンテスト | |
| ユーザー |
kyo1
|
| 提出日時 | 2020-10-10 00:38:36 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 318 bytes |
| コンパイル時間 | 78 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 11,136 KB |
| 最終ジャッジ日時 | 2024-07-20 15:02:40 |
| 合計ジャッジ時間 | 2,945 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 2 WA * 9 |
ソースコード
N = int(input())
res = list(
filter(
lambda x: x[1] >= 30000 * 100,
[
(i, 6 * (g - d))
for i, (g, d) in enumerate([map(int, input().split()) for _ in range(N)])
],
)
)
if res:
print("YES")
print("\n".join([str(res[0][0] + 1)] * 6))
else:
print("NO")
kyo1