結果
| 問題 | No.2863 Base 10 Subsets 1 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-08-30 21:46:12 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 66 ms / 2,000 ms |
| + 916µs | |
| コード長 | 216 bytes |
| 記録 | |
| コンパイル時間 | 281 ms |
| コンパイル使用メモリ | 95,908 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-25 09:32:02 |
| 合計ジャッジ時間 | 2,666 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 |
ソースコード
A,B=input().split()
if len(A)>len(B):
B=("0"*len(A)+B)[-len(A):]
else:
A=("0"*len(B)+A)[-len(B):]
ok=1
for a,b in zip(A,B):
if int(a)<int(b):
ok=0
break
if ok:print("Yes")
else:print("No")