結果

問題 No.2823 PEX (Predecessing Excluded Value) Game
ユーザー viral8viral8
提出日時 2024-06-21 17:10:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,824 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 2,602 ms
コンパイル使用メモリ 78,500 KB
実行使用メモリ 74,304 KB
最終ジャッジ日時 2024-07-27 21:24:08
合計ジャッジ時間 17,844 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,544 KB
testcase_01 AC 131 ms
41,320 KB
testcase_02 AC 134 ms
41,344 KB
testcase_03 AC 1,733 ms
71,828 KB
testcase_04 AC 1,340 ms
65,468 KB
testcase_05 AC 1,824 ms
74,304 KB
testcase_06 AC 217 ms
43,708 KB
testcase_07 AC 225 ms
43,988 KB
testcase_08 AC 228 ms
43,920 KB
testcase_09 AC 395 ms
48,056 KB
testcase_10 AC 219 ms
44,392 KB
testcase_11 AC 268 ms
46,696 KB
testcase_12 AC 207 ms
43,716 KB
testcase_13 AC 211 ms
43,412 KB
testcase_14 AC 214 ms
43,280 KB
testcase_15 AC 216 ms
43,552 KB
testcase_16 AC 194 ms
42,452 KB
testcase_17 AC 199 ms
42,280 KB
testcase_18 AC 149 ms
41,328 KB
testcase_19 AC 181 ms
41,528 KB
testcase_20 AC 199 ms
42,172 KB
testcase_21 AC 203 ms
42,772 KB
testcase_22 AC 155 ms
41,356 KB
testcase_23 AC 142 ms
41,300 KB
testcase_24 AC 150 ms
41,112 KB
testcase_25 AC 144 ms
41,200 KB
testcase_26 AC 136 ms
41,264 KB
testcase_27 AC 157 ms
41,300 KB
testcase_28 AC 142 ms
41,152 KB
testcase_29 AC 148 ms
41,276 KB
testcase_30 AC 150 ms
41,296 KB
testcase_31 AC 155 ms
41,408 KB
testcase_32 AC 142 ms
41,192 KB
testcase_33 AC 137 ms
41,000 KB
testcase_34 AC 134 ms
40,912 KB
testcase_35 AC 138 ms
41,212 KB
testcase_36 AC 140 ms
41,072 KB
testcase_37 AC 137 ms
40,940 KB
testcase_38 AC 136 ms
41,276 KB
testcase_39 AC 132 ms
41,444 KB
testcase_40 AC 141 ms
41,268 KB
testcase_41 AC 122 ms
39,972 KB
testcase_42 AC 130 ms
41,216 KB
testcase_43 AC 134 ms
41,560 KB
testcase_44 AC 130 ms
41,240 KB
testcase_45 AC 136 ms
41,184 KB
testcase_46 AC 135 ms
41,060 KB
testcase_47 AC 118 ms
40,192 KB
testcase_48 AC 131 ms
41,172 KB
testcase_49 AC 131 ms
41,148 KB
testcase_50 AC 135 ms
40,932 KB
testcase_51 AC 136 ms
41,388 KB
testcase_52 AC 131 ms
41,220 KB
testcase_53 AC 135 ms
40,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.HashMap;

class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long bef = 0;
		long sum = 0;
		HashMap<Long,Long> map = new HashMap<>();
		while(N-->0){
			long L = sc.nextLong()-1;
			long R = sc.nextLong();
			sum += L-bef;
			if(sum%2==1)
				map.merge(sum,R-L,Long::sum);
			bef = R;
		}
		long g = 0;
		for(long num:map.values())
			g ^= num;
		System.out.println(g>0?"First":"Second");
	}
}
0