結果
| 問題 | No.2863 Base 10 Subsets 1 |
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2024-08-30 21:24:12 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 247 bytes |
| 記録 | |
| コンパイル時間 | 123 ms |
| コンパイル使用メモリ | 84,736 KB |
| 実行使用メモリ | 51,712 KB |
| 最終ジャッジ日時 | 2026-04-03 23:34:16 |
| 合計ジャッジ時間 | 1,174 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 |
ソースコード
A, B = input().split()
A = list(A)
B = list(B)
while len(A) < len(B):
A.insert(0, "0")
while len(B) < len(A):
B.insert(0, "0")
for i in range(len(A)):
if int(A[i]) < int(B[i]):
print("No")
break
else:
print("Yes")
detteiuu