結果

問題 No.1829 Möbius Tunnelling
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-02-04 21:23:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 109 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 86,924 KB
実行使用メモリ 71,744 KB
最終ジャッジ日時 2023-09-02 04:25:17
合計ジャッジ時間 3,800 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
71,100 KB
testcase_01 WA -
testcase_02 AC 79 ms
71,444 KB
testcase_03 AC 76 ms
71,372 KB
testcase_04 WA -
testcase_05 AC 72 ms
71,372 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 72 ms
71,380 KB
testcase_09 AC 72 ms
71,136 KB
testcase_10 WA -
testcase_11 AC 72 ms
71,188 KB
testcase_12 AC 74 ms
71,348 KB
testcase_13 AC 75 ms
71,468 KB
testcase_14 AC 73 ms
71,356 KB
testcase_15 AC 73 ms
71,364 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 71 ms
71,204 KB
testcase_19 AC 72 ms
71,324 KB
testcase_20 AC 72 ms
71,244 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 72 ms
71,156 KB
testcase_24 AC 79 ms
71,332 KB
testcase_25 AC 71 ms
71,324 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a,b,c = map(int,input().split())
if a == c or b == c:
    print("No")
else:
    print("Yes")
0