提出 #32012058


ソースコード 拡げる

a, b, c = map(int, input().split())
ans = "No"
if a <= c:
    if a <= b and b <= c:
        ans = "Yes"
else:
    if c <= b and b <= a:
        ans = "Yes"
print(ans)

提出情報

提出日時
問題 A - Median?
ユーザ gae1202
言語 Python (3.8.2)
得点 100
コード長 167 Byte
結果 AC
実行時間 23 ms
メモリ 9148 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 100 / 100
結果
AC × 3
AC × 8
セット名 テストケース
Sample example_00.txt, example_01.txt, example_02.txt
All example_00.txt, example_01.txt, example_02.txt, test_00.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt
ケース名 結果 実行時間 メモリ
example_00.txt AC 17 ms 8852 KiB
example_01.txt AC 20 ms 9076 KiB
example_02.txt AC 18 ms 9088 KiB
test_00.txt AC 23 ms 8864 KiB
test_01.txt AC 19 ms 9148 KiB
test_02.txt AC 18 ms 8856 KiB
test_03.txt AC 17 ms 9012 KiB
test_04.txt AC 17 ms 8864 KiB