結果

問題 No.1829 Möbius Tunnelling
ユーザー 情野陸情野陸
提出日時 2022-02-12 23:59:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 201 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 10,600 KB
実行使用メモリ 8,004 KB
最終ジャッジ日時 2023-09-11 13:06:18
合計ジャッジ時間 2,336 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,776 KB
testcase_01 WA -
testcase_02 AC 16 ms
7,900 KB
testcase_03 AC 17 ms
7,776 KB
testcase_04 WA -
testcase_05 AC 16 ms
7,916 KB
testcase_06 AC 16 ms
7,836 KB
testcase_07 WA -
testcase_08 AC 16 ms
7,776 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 15 ms
7,900 KB
testcase_12 AC 16 ms
7,776 KB
testcase_13 AC 15 ms
7,688 KB
testcase_14 AC 15 ms
7,888 KB
testcase_15 AC 15 ms
7,748 KB
testcase_16 WA -
testcase_17 AC 15 ms
7,764 KB
testcase_18 AC 15 ms
7,684 KB
testcase_19 WA -
testcase_20 AC 15 ms
7,896 KB
testcase_21 AC 15 ms
7,776 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 16 ms
7,892 KB
testcase_25 WA -
testcase_26 AC 15 ms
7,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input().split()
a,b,c = list(map(int,input().split()))

if (a<b):
    smallest = a
    largest = b
else:
    smallest = b
    largest = a

if (c <= smallest):
    print('No')
else:
    print("Yes")
0