結果
| 問題 | No.1829 Möbius Tunnelling |
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-26 15:51:11 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 166 bytes |
| 記録 | |
| コンパイル時間 | 225 ms |
| コンパイル使用メモリ | 95,604 KB |
| 実行使用メモリ | 78,988 KB |
| 最終ジャッジ日時 | 2026-07-07 22:20:27 |
| 合計ジャッジ時間 | 3,416 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 WA * 14 |
ソースコード
N = int(input())
a, b, c = map(int, input().split())
required_c = N + 1 - a
if c == required_c and b != a and b != required_c:
print("Yes")
else:
print("No")
lam6er