結果

問題 No.138 化石のバージョン
ユーザー 310icecrystal310icecrystal
提出日時 2024-07-15 03:33:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 120 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 53,464 KB
最終ジャッジ日時 2024-07-15 03:33:46
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

X = list(map(int,input().split(".")))
Y = list(map(int,input().split(".")))

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