結果
問題 |
No.2091 Shio Ramen (Easy)
|
ユーザー |
![]() |
提出日時 | 2022-10-06 03:20:22 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 473 bytes |
コンパイル時間 | 2,197 ms |
コンパイル使用メモリ | 201,996 KB |
最終ジャッジ日時 | 2025-02-07 22:09:43 |
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n,s,k; cin>>n>>s>>k; vector<int> A(n); rep(i,n) cin>>A[i]; vector<pair<int,int>> B(n); rep(i,n) B[i]={abs(A[i]-s),i+1}; sort(ALL(B)); if(B[0].first>k) cout<<"Unlucky!"<<endl; else cout<<B[0].second<<endl; return 0; }