結果
| 問題 | No.2521 Don't be Same |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-10-21 01:54:05 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 174 bytes |
| 記録 | |
| コンパイル時間 | 195 ms |
| コンパイル使用メモリ | 85,696 KB |
| 実行使用メモリ | 74,348 KB |
| 平均クエリ数 | 1.00 |
| 最終ジャッジ日時 | 2026-04-09 10:57:07 |
| 合計ジャッジ時間 | 4,618 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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