結果
問題 |
No.467 隠されていたゲーム
|
ユーザー |
![]() |
提出日時 | 2025-06-07 18:27:50 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 215 bytes |
コンパイル時間 | 359 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 52,096 KB |
最終ジャッジ日時 | 2025-06-07 18:27:53 |
合計ジャッジ時間 | 2,671 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 WA * 1 |
ソースコード
N = int(input()) D = list(map(int,input().split())) x,y = map(int,input().split()) x0 = max(abs(x),abs(y)) maxd = max(D) if x0 in D: print(1) exit() if x0 < maxd: print(2) exit() print(-(-x0//maxd))