結果

問題 No.2481 Shiritori
ユーザー ntudantuda
提出日時 2023-09-24 01:33:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 89 bytes
コンパイル時間 893 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 53,988 KB
最終ジャッジ日時 2024-07-17 01:29:36
合計ジャッジ時間 4,236 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,444 KB
testcase_01 AC 42 ms
52,112 KB
testcase_02 AC 39 ms
53,068 KB
testcase_03 AC 38 ms
52,540 KB
testcase_04 AC 38 ms
53,424 KB
testcase_05 AC 38 ms
52,176 KB
testcase_06 AC 39 ms
53,152 KB
testcase_07 AC 39 ms
52,736 KB
testcase_08 WA -
testcase_09 AC 38 ms
51,872 KB
testcase_10 WA -
testcase_11 AC 48 ms
52,612 KB
testcase_12 AC 46 ms
51,696 KB
testcase_13 AC 44 ms
52,064 KB
testcase_14 AC 44 ms
52,484 KB
testcase_15 AC 45 ms
52,504 KB
testcase_16 AC 46 ms
52,472 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 46 ms
53,348 KB
testcase_25 WA -
testcase_26 AC 45 ms
53,148 KB
testcase_27 WA -
testcase_28 AC 47 ms
52,208 KB
testcase_29 AC 46 ms
52,076 KB
testcase_30 AC 50 ms
52,452 KB
testcase_31 AC 48 ms
51,696 KB
testcase_32 AC 46 ms
51,980 KB
testcase_33 AC 47 ms
52,420 KB
testcase_34 AC 47 ms
52,208 KB
testcase_35 AC 46 ms
52,124 KB
testcase_36 AC 46 ms
52,084 KB
testcase_37 AC 49 ms
51,552 KB
testcase_38 WA -
testcase_39 AC 45 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
if N <= 2 or M & 1:
	print("First")
else:
	print("Second")
0