結果
| 問題 | No.138 化石のバージョン |
| コンテスト | |
| ユーザー |
ytft
|
| 提出日時 | 2021-03-15 19:10:13 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 160 bytes |
| 記録 | |
| コンパイル時間 | 743 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-05-07 15:54:02 |
| 合計ジャッジ時間 | 5,729 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 WA * 14 |
ソースコード
a=list(map(int,input().split('.')))
b=list(map(int,input().split('.')))
ans='YES'
for i in range(3):
if a[i]<b[i]:
ans='NO'
break
print(ans)
ytft