結果
問題 |
No.2091 Shio Ramen (Easy)
|
ユーザー |
![]() |
提出日時 | 2023-10-23 09:59:00 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 2,000 ms |
コード長 | 146 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 82,320 KB |
実行使用メモリ | 53,540 KB |
最終ジャッジ日時 | 2024-09-22 10:01:39 |
合計ジャッジ時間 | 1,459 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
n, s, k = map(int, input().split()) A = sorted([[abs(int(input()) - s), i] for i in range(n)]) print(A[0][1] + 1 if A[0][0] <= k else "Unlucky!")