結果

問題 No.138 化石のバージョン
ユーザー mlihua09mlihua09
提出日時 2020-08-27 16:58:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 147 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2024-11-07 20:51:37
合計ジャッジ時間 2,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #


A = list(map(int, input().split('.')))

B = list(map(int, input().split('.')))

if B > A:
    
    print('NO')
    
else:
    
    print('YES')

0