結果
| 問題 |
No.138 化石のバージョン
|
| コンテスト | |
| ユーザー |
kekenx
|
| 提出日時 | 2020-03-05 23:25:30 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 5,000 ms |
| コード長 | 431 bytes |
| コンパイル時間 | 155 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-10-14 02:29:07 |
| 合計ジャッジ時間 | 2,354 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 33 |
ソースコード
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
s = readline().decode().strip()
s2 = readline().decode().strip()
first = s.split(".")
f = [int(x) for x in first]
second = s2.split(".")
s = [int(x) for x in second]
if (s[0] < f[0] or (s[0] <= f[0] and s[1] < f[1]) or (s[0] <= f[0] and s[1] <= f[1] and s[2] <= f[2])):
print("YES");
else :
print("NO");
kekenx