結果

問題 No.2091 Shio Ramen (Easy)
ユーザー AsahiAsahi
提出日時 2023-01-06 17:22:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,358 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 79,512 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-06-30 02:28:27
合計ジャッジ時間 4,954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,012 KB
testcase_01 AC 133 ms
41,276 KB
testcase_02 AC 131 ms
41,608 KB
testcase_03 AC 129 ms
41,100 KB
testcase_04 AC 131 ms
41,300 KB
testcase_05 AC 129 ms
41,376 KB
testcase_06 AC 115 ms
40,116 KB
testcase_07 AC 127 ms
41,164 KB
testcase_08 AC 132 ms
41,024 KB
testcase_09 AC 131 ms
41,524 KB
testcase_10 AC 130 ms
40,948 KB
testcase_11 AC 130 ms
41,364 KB
testcase_12 AC 116 ms
39,952 KB
testcase_13 AC 128 ms
41,172 KB
testcase_14 AC 128 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
 
public class Main{
    public static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    public static final int INFI = Integer.MAX_VALUE;
    public static final long INFL = Long.MAX_VALUE;
    public static final int MOD = 1000000007;
    public static PrintWriter output = new PrintWriter(System.out);
    public static Scanner sc = new Scanner(System.in);
    public static final int [] dy4 = {0,1,0,-1};
    public static final int [] dx4 = {1,0,-1,0};
    public static ArrayList<ArrayList<Integer>> list = new ArrayList<>();
    public static ArrayList<Integer> answer = new ArrayList<>();
    public static boolean [] visited ;
    public static void main(String[] args) throws IOException{
        StringTokenizer st;
        //st = new StringTokenizer(buff.readLine());
        int N = sc.nextInt();
        int S = sc.nextInt();
        int K = sc.nextInt();
        int [] A = new int[N];
        for(int i=0;i<N;i++) A[i] = sc.nextInt();
        int min = INFI;
        int ans = -1;
        for(int i=0;i<N;i++) {
            if(Math.abs(A[i] - S) <= K && min > Math.abs(A[i] - S)) {
                min = Math.abs(A[i]-S);
                ans = i;
            }
        }
        output.print(ans == -1 ? "Unlucky!":ans+1);
        output.flush();
    }
}
0