結果

問題 No.2397 ω冪
ユーザー Alex WiceAlex Wice
提出日時 2023-07-28 21:51:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 66,320 KB
最終ジャッジ日時 2024-10-06 18:29:03
合計ジャッジ時間 3,137 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,212 KB
testcase_01 AC 39 ms
53,040 KB
testcase_02 AC 42 ms
52,796 KB
testcase_03 AC 39 ms
52,360 KB
testcase_04 AC 39 ms
51,992 KB
testcase_05 AC 39 ms
52,892 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,492 KB
testcase_17 AC 38 ms
53,444 KB
testcase_18 AC 38 ms
52,112 KB
testcase_19 WA -
testcase_20 AC 38 ms
53,308 KB
testcase_21 AC 39 ms
53,172 KB
testcase_22 AC 39 ms
52,152 KB
testcase_23 AC 38 ms
52,000 KB
testcase_24 AC 38 ms
52,680 KB
testcase_25 AC 40 ms
53,384 KB
testcase_26 AC 39 ms
53,032 KB
testcase_27 WA -
testcase_28 AC 38 ms
51,832 KB
testcase_29 AC 39 ms
52,068 KB
testcase_30 AC 38 ms
52,180 KB
testcase_31 AC 38 ms
53,036 KB
testcase_32 AC 42 ms
58,656 KB
testcase_33 AC 42 ms
57,468 KB
testcase_34 WA -
testcase_35 AC 38 ms
52,740 KB
testcase_36 WA -
testcase_37 AC 39 ms
53,908 KB
testcase_38 WA -
testcase_39 AC 39 ms
53,288 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