結果
問題 |
No.2091 Shio Ramen (Easy)
|
ユーザー |
![]() |
提出日時 | 2022-10-24 21:04:06 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 344 bytes |
コンパイル時間 | 2,051 ms |
コンパイル使用メモリ | 193,308 KB |
最終ジャッジ日時 | 2025-02-08 12:21:26 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int N,S,K; cin>>N>>S>>K; int ans = -1; int best = K+1; for(int i=1;i<=N;i++){ int x; cin>>x; if(abs(x-S) < best){ best = abs(x-S); ans = i; } } if(ans>0) cout<<ans<<endl; else cout<<"Unlucky!"<<endl; }