結果

問題 No.138 化石のバージョン
ユーザー konabe
提出日時 2018-04-24 02:07:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-27 15:48:10
合計ジャッジ時間 2,169 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#python 3.5.2

V0 = list(map(int, input().split(".")))
V1 = list(map(int, input().split(".")))

kaseki = False
if V0[0] >= V1[0]:
    kaseki = True
    if V0[1] >= V1[1]:
        kaseki = True
        if V0[2] >= V1[2]:
            kaseki = True
    
print("YES") if kaseki else print("NO")
0