結果
| 問題 | No.138 化石のバージョン |
| コンテスト | |
| ユーザー |
JunOnuma
|
| 提出日時 | 2017-06-13 13:01:57 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 179 bytes |
| 記録 | |
| コンパイル時間 | 210 ms |
| コンパイル使用メモリ | 77,300 KB |
| 最終ジャッジ日時 | 2025-12-04 00:04:52 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 WA * 13 |
ソースコード
a = raw_input().split('.')
b = raw_input().split('.')
old = True
for i,j in zip(a,b):
if i < j:
old = False
break
if old:
print 'YES'
else:
print 'NO'
JunOnuma