結果

問題 No.138 化石のバージョン
ユーザー norioc
提出日時 2024-07-16 21:52:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 132 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 53,440 KB
最終ジャッジ日時 2024-07-16 21:52:09
合計ジャッジ時間 2,497 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

X = [int(x) for x in input().split('.')]
Y = [int(x) for x in input().split('.')]

if X < Y:
    print('NO')
else:
    print('YES')
0