結果

問題 No.2481 Shiritori
ユーザー rlangevinrlangevin
提出日時 2023-09-22 21:33:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 53,796 KB
最終ジャッジ日時 2024-07-08 12:15:22
合計ジャッジ時間 2,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,364 KB
testcase_01 AC 33 ms
52,108 KB
testcase_02 AC 34 ms
51,520 KB
testcase_03 AC 33 ms
52,564 KB
testcase_04 AC 31 ms
51,892 KB
testcase_05 AC 29 ms
51,748 KB
testcase_06 AC 31 ms
51,796 KB
testcase_07 AC 32 ms
52,016 KB
testcase_08 WA -
testcase_09 AC 32 ms
52,104 KB
testcase_10 AC 30 ms
51,832 KB
testcase_11 AC 30 ms
52,116 KB
testcase_12 AC 32 ms
52,688 KB
testcase_13 AC 32 ms
51,916 KB
testcase_14 AC 35 ms
52,436 KB
testcase_15 AC 31 ms
52,396 KB
testcase_16 AC 31 ms
53,680 KB
testcase_17 AC 32 ms
52,032 KB
testcase_18 AC 31 ms
51,692 KB
testcase_19 AC 32 ms
51,828 KB
testcase_20 AC 32 ms
53,120 KB
testcase_21 AC 34 ms
53,792 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 32 ms
51,440 KB
testcase_25 AC 31 ms
51,924 KB
testcase_26 AC 31 ms
51,948 KB
testcase_27 WA -
testcase_28 AC 32 ms
52,000 KB
testcase_29 AC 32 ms
52,844 KB
testcase_30 AC 31 ms
51,692 KB
testcase_31 AC 32 ms
51,800 KB
testcase_32 AC 30 ms
52,500 KB
testcase_33 AC 31 ms
52,180 KB
testcase_34 AC 31 ms
52,468 KB
testcase_35 AC 32 ms
53,000 KB
testcase_36 AC 30 ms
52,328 KB
testcase_37 AC 30 ms
51,940 KB
testcase_38 WA -
testcase_39 AC 30 ms
51,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
print("Second") if N % 2 == 0 and M >= 4 and M % 2 == 0 else print("First")
0