結果

問題 No.2619 Sorted Nim
ユーザー tentententen
提出日時 2024-01-29 19:41:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,868 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 90,088 KB
実行使用メモリ 51,360 KB
最終ジャッジ日時 2024-09-28 10:03:32
合計ジャッジ時間 18,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,180 KB
testcase_01 AC 48 ms
37,120 KB
testcase_02 AC 234 ms
47,064 KB
testcase_03 AC 256 ms
50,712 KB
testcase_04 AC 232 ms
47,216 KB
testcase_05 AC 220 ms
47,324 KB
testcase_06 AC 253 ms
50,596 KB
testcase_07 AC 239 ms
47,256 KB
testcase_08 AC 252 ms
50,096 KB
testcase_09 AC 46 ms
36,964 KB
testcase_10 AC 249 ms
50,236 KB
testcase_11 AC 226 ms
48,016 KB
testcase_12 AC 249 ms
48,112 KB
testcase_13 AC 47 ms
37,148 KB
testcase_14 AC 253 ms
51,228 KB
testcase_15 AC 245 ms
48,440 KB
testcase_16 AC 238 ms
50,076 KB
testcase_17 AC 262 ms
51,192 KB
testcase_18 AC 252 ms
50,744 KB
testcase_19 AC 243 ms
46,936 KB
testcase_20 AC 233 ms
46,968 KB
testcase_21 AC 256 ms
50,644 KB
testcase_22 AC 237 ms
48,228 KB
testcase_23 AC 257 ms
48,444 KB
testcase_24 AC 245 ms
50,364 KB
testcase_25 AC 246 ms
50,388 KB
testcase_26 AC 247 ms
48,296 KB
testcase_27 AC 235 ms
46,944 KB
testcase_28 AC 256 ms
50,916 KB
testcase_29 AC 235 ms
50,644 KB
testcase_30 AC 245 ms
48,320 KB
testcase_31 AC 47 ms
37,192 KB
testcase_32 AC 232 ms
47,072 KB
testcase_33 AC 238 ms
48,088 KB
testcase_34 AC 230 ms
47,244 KB
testcase_35 AC 239 ms
48,508 KB
testcase_36 AC 239 ms
50,404 KB
testcase_37 AC 49 ms
36,912 KB
testcase_38 AC 238 ms
47,192 KB
testcase_39 AC 258 ms
50,672 KB
testcase_40 AC 245 ms
49,060 KB
testcase_41 AC 241 ms
48,616 KB
testcase_42 AC 227 ms
47,076 KB
testcase_43 AC 253 ms
51,296 KB
testcase_44 AC 242 ms
47,928 KB
testcase_45 AC 253 ms
50,652 KB
testcase_46 AC 232 ms
48,164 KB
testcase_47 AC 221 ms
47,624 KB
testcase_48 AC 48 ms
36,748 KB
testcase_49 AC 242 ms
48,164 KB
testcase_50 AC 231 ms
47,076 KB
testcase_51 AC 243 ms
48,164 KB
testcase_52 AC 48 ms
36,992 KB
testcase_53 AC 254 ms
51,048 KB
testcase_54 AC 229 ms
48,320 KB
testcase_55 AC 280 ms
50,960 KB
testcase_56 AC 232 ms
48,264 KB
testcase_57 AC 253 ms
51,360 KB
testcase_58 AC 256 ms
50,208 KB
testcase_59 AC 252 ms
47,744 KB
testcase_60 AC 229 ms
47,196 KB
testcase_61 AC 245 ms
48,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        int[] diffs = new int[n];
        diffs[0] = values[0];
        for (int i = 1; i < n; i++) {
            diffs[i] = values[i] - values[i - 1];
        }
        int xor = 0;
        for (int i = n - 1; i >= 0; i -= 2) {
            xor ^= diffs[i];
        }
        System.out.println(xor == 0 ? "Second" : "First");
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0