結果

問題 No.1829 Möbius Tunnelling
ユーザー dangodango
提出日時 2023-06-25 14:45:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 53,824 KB
最終ジャッジ日時 2024-07-02 13:18:05
合計ジャッジ時間 1,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,512 KB
testcase_01 AC 35 ms
51,684 KB
testcase_02 AC 33 ms
52,776 KB
testcase_03 AC 33 ms
52,532 KB
testcase_04 AC 34 ms
52,220 KB
testcase_05 AC 33 ms
51,564 KB
testcase_06 AC 33 ms
52,880 KB
testcase_07 AC 31 ms
52,600 KB
testcase_08 AC 31 ms
52,516 KB
testcase_09 AC 33 ms
53,012 KB
testcase_10 AC 34 ms
52,068 KB
testcase_11 AC 34 ms
51,948 KB
testcase_12 AC 32 ms
51,912 KB
testcase_13 AC 38 ms
52,616 KB
testcase_14 AC 32 ms
52,364 KB
testcase_15 AC 32 ms
52,756 KB
testcase_16 AC 33 ms
52,896 KB
testcase_17 AC 33 ms
52,896 KB
testcase_18 AC 32 ms
52,444 KB
testcase_19 AC 32 ms
52,516 KB
testcase_20 AC 33 ms
52,088 KB
testcase_21 AC 32 ms
53,032 KB
testcase_22 AC 33 ms
52,484 KB
testcase_23 AC 31 ms
53,372 KB
testcase_24 AC 31 ms
53,824 KB
testcase_25 AC 32 ms
52,436 KB
testcase_26 AC 31 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a, b, c = list(map(int, input().split()))
if a < b:
    if n - c + a >= n:
        print('No')
    else:
        print('Yes')
else:
    if n - a + c >= n:
        print('No')
    else:
        print('Yes')
0