結果

問題 No.138 化石のバージョン
ユーザー superzugan
提出日時 2021-08-20 20:48:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-10-14 02:03:01
合計ジャッジ時間 2,203 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c=map(int,input().split("."))
x,y,z=map(int,input().split("."))
s=a*10000+b*100+c
t=x*10000+y*100+z
if s>=t:print("YES")
elif s<t:print("NO")
0