結果
| 問題 | No.2863 Base 10 Subsets 1 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-08-30 21:46:30 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 93 ms / 2,000 ms |
| + 198µs | |
| コード長 | 269 bytes |
| 記録 | |
| コンパイル時間 | 876 ms |
| コンパイル使用メモリ | 21,412 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-08-25 09:31:50 |
| 合計ジャッジ時間 | 3,159 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 |
ソースコード
A,B = map(int, input().split())
l = list(str(A))
lb = list(str(B))
a = 0
if A<B:
print("No")
else:
for j in range(1, len(lb)+1):
if l[-j] < lb[-j]:
print("No")
break
a+=1
if a ==len(lb):
print("Yes")