結果

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

ソースコード

diff #

first_s = input()
first_d = first_s.split(".")
first_int = int(first_d[0]+first_d[1]+first_d[2])
second_s = input()
second_d = second_s.split(".")
second_int = int(second_d[0]+second_d[1]+second_d[2])
result = ""

if first_int >second_int:
	result = "YES"
else:
	result="NO"

print(result)
0