結果

問題 No.138 化石のバージョン
ユーザー yohei-kuyohei-ku
提出日時 2018-03-13 00:00:49
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 132 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-15 19:41:18
合計ジャッジ時間 1,808 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

V1 = raw_input()
V2 = raw_input()
V1 = V1.replace(".","")
V2 = V2.replace(".","")

if V2 <= V1:
    print "YES"
else:
    print "NO"
0