結果
| 問題 |
No.2091 Shio Ramen (Easy)
|
| ユーザー |
kpinkcat
|
| 提出日時 | 2022-10-13 03:49:13 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 2,000 ms |
| コード長 | 278 bytes |
| コンパイル時間 | 72 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-06-30 02:23:31 |
| 合計ジャッジ時間 | 989 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
# coding: utf-8
# Your code here!
N, S, K = [int(x) for x in input().split()]
min = 10
shop = 11
diff = 10
for i in range(N):
diff = abs(int(input()) - S)
if diff < min:
min = diff
shop = i
if min <= K:
print(shop+1)
else:
print("Unlucky!")
kpinkcat