結果

問題 No.2397 ω冪
ユーザー Alex WiceAlex Wice
提出日時 2023-07-28 21:51:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 66,516 KB
最終ジャッジ日時 2024-04-16 05:45:06
合計ジャッジ時間 2,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,412 KB
testcase_01 AC 38 ms
52,132 KB
testcase_02 AC 38 ms
51,944 KB
testcase_03 AC 38 ms
53,432 KB
testcase_04 AC 41 ms
52,216 KB
testcase_05 AC 38 ms
52,932 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 38 ms
52,272 KB
testcase_17 AC 38 ms
51,876 KB
testcase_18 AC 38 ms
52,024 KB
testcase_19 WA -
testcase_20 AC 38 ms
53,008 KB
testcase_21 AC 39 ms
52,200 KB
testcase_22 AC 39 ms
53,548 KB
testcase_23 AC 39 ms
52,532 KB
testcase_24 AC 39 ms
51,944 KB
testcase_25 AC 39 ms
52,116 KB
testcase_26 AC 40 ms
52,568 KB
testcase_27 WA -
testcase_28 AC 39 ms
52,352 KB
testcase_29 AC 40 ms
52,696 KB
testcase_30 AC 38 ms
53,268 KB
testcase_31 AC 39 ms
52,496 KB
testcase_32 AC 43 ms
58,948 KB
testcase_33 AC 41 ms
58,304 KB
testcase_34 WA -
testcase_35 AC 38 ms
52,564 KB
testcase_36 WA -
testcase_37 AC 39 ms
54,424 KB
testcase_38 WA -
testcase_39 AC 39 ms
54,484 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
T = input()
M = max(len(S), len(T))
S = '0' * (M - len(S)) + S
T = '0' * (M - len(T)) + T
for i in range(M):
	if S[i] < T[i]:
		print("Yes")
		break
else:
	print("No")
0