結果

問題 No.138 化石のバージョン
ユーザー deepjugglingdeepjuggling
提出日時 2023-03-08 08:53:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 53,960 KB
最終ジャッジ日時 2024-09-18 02:27:44
合計ジャッジ時間 2,649 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,672 KB
testcase_01 AC 32 ms
52,448 KB
testcase_02 AC 35 ms
51,744 KB
testcase_03 AC 34 ms
51,776 KB
testcase_04 AC 35 ms
52,760 KB
testcase_05 AC 34 ms
52,428 KB
testcase_06 AC 36 ms
52,752 KB
testcase_07 AC 34 ms
52,812 KB
testcase_08 AC 35 ms
52,344 KB
testcase_09 AC 34 ms
52,024 KB
testcase_10 AC 35 ms
52,644 KB
testcase_11 AC 35 ms
52,284 KB
testcase_12 AC 32 ms
53,104 KB
testcase_13 AC 32 ms
53,560 KB
testcase_14 AC 31 ms
51,956 KB
testcase_15 AC 32 ms
51,876 KB
testcase_16 AC 33 ms
52,820 KB
testcase_17 AC 32 ms
52,024 KB
testcase_18 AC 32 ms
52,244 KB
testcase_19 AC 34 ms
52,484 KB
testcase_20 AC 33 ms
52,648 KB
testcase_21 AC 32 ms
52,564 KB
testcase_22 AC 31 ms
52,944 KB
testcase_23 AC 32 ms
51,872 KB
testcase_24 AC 33 ms
52,424 KB
testcase_25 AC 32 ms
52,608 KB
testcase_26 AC 33 ms
51,884 KB
testcase_27 AC 32 ms
51,964 KB
testcase_28 AC 34 ms
53,960 KB
testcase_29 AC 33 ms
53,456 KB
testcase_30 AC 33 ms
52,140 KB
testcase_31 AC 34 ms
52,632 KB
testcase_32 AC 32 ms
51,832 KB
testcase_33 AC 37 ms
51,904 KB
testcase_34 AC 35 ms
52,452 KB
testcase_35 AC 34 ms
52,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = map(int,input().split("."))
x,y,z = map(int,input().split("."))
if x > a:
    print("NO")
elif x < a:
    print("YES")
else:
    if y > b:
        print("NO")
    elif y < b:
        print("YES")
    else:
        if z > c:
            print("NO")
        else:
            print("YES")
0