結果

問題 No.2481 Shiritori
ユーザー KeroruKeroru
提出日時 2023-09-22 21:51:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 95 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-07-08 12:36:32
合計ジャッジ時間 2,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,996 KB
testcase_01 AC 35 ms
52,088 KB
testcase_02 AC 31 ms
51,780 KB
testcase_03 AC 31 ms
52,740 KB
testcase_04 AC 31 ms
51,300 KB
testcase_05 AC 31 ms
52,756 KB
testcase_06 AC 31 ms
52,932 KB
testcase_07 AC 31 ms
52,032 KB
testcase_08 AC 31 ms
52,236 KB
testcase_09 AC 31 ms
53,916 KB
testcase_10 AC 32 ms
51,892 KB
testcase_11 WA -
testcase_12 AC 32 ms
51,692 KB
testcase_13 AC 31 ms
51,816 KB
testcase_14 AC 30 ms
52,448 KB
testcase_15 AC 30 ms
52,428 KB
testcase_16 AC 30 ms
52,648 KB
testcase_17 AC 32 ms
51,292 KB
testcase_18 AC 30 ms
52,884 KB
testcase_19 AC 31 ms
52,204 KB
testcase_20 AC 31 ms
52,216 KB
testcase_21 AC 30 ms
51,812 KB
testcase_22 AC 31 ms
52,784 KB
testcase_23 AC 31 ms
52,348 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 30 ms
51,900 KB
testcase_27 AC 30 ms
53,024 KB
testcase_28 AC 31 ms
53,296 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 31 ms
52,028 KB
testcase_32 WA -
testcase_33 AC 31 ms
52,960 KB
testcase_34 WA -
testcase_35 AC 31 ms
51,508 KB
testcase_36 AC 31 ms
51,932 KB
testcase_37 WA -
testcase_38 AC 30 ms
52,000 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
if m<=2 or n==1:
    ans='First'
else:
    ans='Second'
print(ans)
0