結果

問題 No.2481 Shiritori
ユーザー H20
提出日時 2023-09-23 23:15:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 112 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 53,712 KB
最終ジャッジ日時 2024-07-16 23:01:16
合計ジャッジ時間 2,705 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

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