結果

問題 No.138 化石のバージョン
ユーザー pof
提出日時 2019-06-21 23:21:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 173 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-26 00:33:49
合計ジャッジ時間 2,405 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = map(int,input().split("."))
x,y,z = map(int,input().split("."))

r1=100*100*a + 100*b + c
r2=100*100*x + 100*y + z
if r2<=r1:
    print("YES")
else:
    print("NO")
0