結果
問題 | No.2481 Shiritori |
ユーザー |
|
提出日時 | 2023-09-22 22:46:03 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 150 bytes |
コンパイル時間 | 255 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-07-08 13:29:36 |
合計ジャッジ時間 | 2,445 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 36 WA * 1 |
ソースコード
n, m = map(int, input().split()) if n == 1 and m == 1: print("First") elif n > 1 and m > 2 and n * m % 2 == 0: print("Second") else: print("First")