結果
| 問題 |
No.2521 Don't be Same
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-10-21 01:54:05 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 174 bytes |
| コンパイル時間 | 221 ms |
| コンパイル使用メモリ | 82,268 KB |
| 実行使用メモリ | 71,228 KB |
| 平均クエリ数 | 1.00 |
| 最終ジャッジ日時 | 2024-09-21 03:12:56 |
| 合計ジャッジ時間 | 5,372 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 27 |
ソースコード
X, Y = map(int,input().split())
if max(X, Y) - min(X, Y) == 1 and min(X, Y) % 2 == 1:
print('Second', flush=True)
i = 1
else:
print('First', flush=True)
i = 0