結果
| 問題 | No.2481 Shiritori |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-09-22 22:44:05 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 110 bytes |
| 記録 | |
| コンパイル時間 | 129 ms |
| コンパイル使用メモリ | 84,772 KB |
| 実行使用メモリ | 52,328 KB |
| 最終ジャッジ日時 | 2026-03-30 07:34:14 |
| 合計ジャッジ時間 | 2,282 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 WA * 8 |
ソースコード
n, m = map(int, input().split())
if n > 2 and m > 1 and n * m % 2 == 0:
print("Second")
else:
print("First")