結果

問題 No.138 化石のバージョン
ユーザー ssmkzk
提出日時 2018-06-01 01:33:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 345 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-30 08:45:28
合計ジャッジ時間 2,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

l = list(map(int, input().split(".")))
l1 = list(map(int, input().split(".")))

if l[0] > l1[0]:
    print("YES")
elif l[0] == l1[0]:
    if l[1] > l1[1]:
        print("YES")
    elif l[1] == l1[1]:
        if l[2] >= l1[2]:
            print ("YES")
        else:
            print ("NO")
    else:
        print ("NO")
else:
    print ("NO")
0