結果
| 問題 | No.138 化石のバージョン |
| コンテスト | |
| ユーザー |
nbisco
|
| 提出日時 | 2016-03-23 21:19:07 |
| 言語 | Python3 (3.14.2 + numpy 2.4.0 + scipy 1.16.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 324 bytes |
| 記録 | |
| コンパイル時間 | 178 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-10-01 21:38:19 |
| 合計ジャッジ時間 | 2,419 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 WA * 14 |
ソースコード
#!/usr/bin/env python3
#fileencoding: utf-8
kaseki = [int(i) for i in input().strip().split(".")]
target = [int(i) for i in input().strip().split(".")]
is_kaseki = True
for i in range(len(kaseki)):
if target[i] > kaseki[i]:
is_kaseki = False
break
if is_kaseki:
print("YES")
else:
print("NO")
nbisco