結果

問題 No.2397 ω冪
ユーザー Alex WiceAlex Wice
提出日時 2023-07-28 21:54:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 149 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 65,268 KB
最終ジャッジ日時 2024-04-16 05:47:55
合計ジャッジ時間 3,343 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,124 KB
testcase_01 AC 40 ms
52,640 KB
testcase_02 AC 40 ms
52,452 KB
testcase_03 AC 41 ms
52,704 KB
testcase_04 AC 40 ms
53,448 KB
testcase_05 AC 40 ms
52,068 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 40 ms
51,804 KB
testcase_09 WA -
testcase_10 AC 41 ms
52,740 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 40 ms
52,276 KB
testcase_17 WA -
testcase_18 AC 40 ms
52,824 KB
testcase_19 WA -
testcase_20 AC 39 ms
52,988 KB
testcase_21 WA -
testcase_22 AC 40 ms
52,216 KB
testcase_23 AC 40 ms
52,624 KB
testcase_24 WA -
testcase_25 AC 42 ms
52,468 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 40 ms
52,444 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 39 ms
53,104 KB
testcase_34 AC 39 ms
52,500 KB
testcase_35 AC 40 ms
52,736 KB
testcase_36 WA -
testcase_37 AC 41 ms
53,972 KB
testcase_38 WA -
testcase_39 AC 41 ms
53,600 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
T = input()
for i in range(min(len(S), len(T))):
	if S[i] < T[i]:
		print("Yes")
		break
else:
	print("Yes" if len(S) < len(T) else "No")
0