結果

問題 No.138 化石のバージョン
ユーザー matrie
提出日時 2020-11-26 08:18:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 299 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-23 20:42:32
合計ジャッジ時間 2,458 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
v = input().replace('.',' ')
v1 = list(map(int, v.split()))
v = input().replace('.',' ')
v2 = list(map(int, v.split()))
#print(v.split(),v1,v2)

v1i = (v1[0]*1000 + v1[1])*1000 + v1[2]
v2i = (v2[0]*1000 + v2[1])*1000 + v2[2]
#print(v1i,v2i)

if v1i >= v2i: print("YES")
else: print("NO")
0