結果

問題 No.715 集合と二人ゲーム
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-27 20:55:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-09-25 05:38:52
合計ジャッジ時間 11,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 92 ms
12,288 KB
testcase_03 AC 92 ms
12,544 KB
testcase_04 AC 95 ms
12,544 KB
testcase_05 AC 97 ms
12,928 KB
testcase_06 AC 98 ms
13,312 KB
testcase_07 AC 99 ms
13,440 KB
testcase_08 AC 102 ms
13,696 KB
testcase_09 AC 103 ms
14,080 KB
testcase_10 AC 105 ms
13,952 KB
testcase_11 AC 105 ms
14,592 KB
testcase_12 AC 106 ms
14,592 KB
testcase_13 AC 109 ms
14,720 KB
testcase_14 AC 113 ms
15,616 KB
testcase_15 AC 111 ms
15,616 KB
testcase_16 AC 114 ms
15,872 KB
testcase_17 AC 112 ms
15,872 KB
testcase_18 AC 117 ms
16,384 KB
testcase_19 AC 116 ms
16,512 KB
testcase_20 AC 126 ms
17,024 KB
testcase_21 AC 127 ms
17,024 KB
testcase_22 AC 129 ms
17,152 KB
testcase_23 AC 127 ms
17,408 KB
testcase_24 AC 128 ms
17,664 KB
testcase_25 AC 130 ms
17,664 KB
testcase_26 AC 129 ms
17,792 KB
testcase_27 AC 134 ms
18,688 KB
testcase_28 AC 135 ms
18,944 KB
testcase_29 AC 136 ms
19,200 KB
testcase_30 AC 134 ms
18,176 KB
testcase_31 AC 129 ms
17,280 KB
testcase_32 AC 126 ms
16,640 KB
testcase_33 AC 133 ms
17,792 KB
testcase_34 AC 128 ms
17,024 KB
testcase_35 AC 88 ms
12,032 KB
testcase_36 AC 88 ms
12,160 KB
testcase_37 AC 89 ms
12,032 KB
testcase_38 AC 89 ms
12,288 KB
testcase_39 AC 87 ms
12,160 KB
testcase_40 AC 87 ms
12,160 KB
testcase_41 AC 87 ms
12,288 KB
testcase_42 AC 87 ms
12,160 KB
testcase_43 AC 89 ms
12,288 KB
testcase_44 AC 87 ms
12,160 KB
testcase_45 AC 89 ms
12,288 KB
testcase_46 AC 89 ms
12,032 KB
testcase_47 AC 90 ms
12,288 KB
testcase_48 AC 90 ms
12,032 KB
testcase_49 AC 91 ms
12,160 KB
testcase_50 AC 371 ms
54,784 KB
testcase_51 AC 379 ms
54,784 KB
testcase_52 AC 368 ms
54,656 KB
testcase_53 AC 368 ms
54,528 KB
testcase_54 AC 372 ms
54,656 KB
testcase_55 AC 367 ms
54,272 KB
testcase_56 AC 357 ms
52,480 KB
testcase_57 AC 345 ms
50,048 KB
testcase_58 AC 374 ms
54,656 KB
testcase_59 AC 371 ms
54,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
f=->(k){k==14||k==34?0:k==16||k==17||k==31||k==51?2:0xe9792a3f6217ba8180b0be4f6ee6/10**(k%34)%10}
z=k=1;a=-1;gets.split.map(&:to_i).sort.each{|b|b-a>1?(z^=f[k];k=1):k+=1;a=b}
puts z^f[k]>0?:First: :Second
0