結果

問題 No.2629 A replace B replace C
ユーザー flygonflygon
提出日時 2024-02-16 22:16:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 67,052 KB
最終ジャッジ日時 2024-09-28 20:52:26
合計ジャッジ時間 5,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
65,096 KB
testcase_01 AC 50 ms
66,632 KB
testcase_02 AC 45 ms
65,620 KB
testcase_03 AC 48 ms
66,516 KB
testcase_04 AC 49 ms
64,720 KB
testcase_05 AC 48 ms
65,336 KB
testcase_06 AC 44 ms
64,072 KB
testcase_07 AC 48 ms
65,448 KB
testcase_08 AC 43 ms
63,964 KB
testcase_09 AC 44 ms
63,480 KB
testcase_10 AC 48 ms
66,004 KB
testcase_11 AC 47 ms
66,256 KB
testcase_12 AC 49 ms
67,052 KB
testcase_13 AC 50 ms
65,828 KB
testcase_14 AC 46 ms
65,064 KB
testcase_15 AC 49 ms
66,848 KB
testcase_16 AC 46 ms
65,688 KB
testcase_17 AC 47 ms
65,456 KB
testcase_18 AC 47 ms
67,044 KB
testcase_19 AC 48 ms
64,980 KB
testcase_20 AC 49 ms
65,612 KB
testcase_21 AC 44 ms
63,912 KB
testcase_22 AC 45 ms
64,052 KB
testcase_23 AC 45 ms
64,420 KB
testcase_24 AC 46 ms
64,408 KB
testcase_25 AC 45 ms
65,124 KB
testcase_26 AC 46 ms
63,880 KB
testcase_27 AC 45 ms
64,788 KB
testcase_28 AC 44 ms
63,596 KB
testcase_29 AC 44 ms
63,496 KB
testcase_30 AC 42 ms
62,616 KB
testcase_31 AC 47 ms
65,672 KB
testcase_32 AC 47 ms
65,732 KB
testcase_33 AC 49 ms
65,788 KB
testcase_34 AC 47 ms
65,888 KB
testcase_35 AC 48 ms
64,712 KB
testcase_36 AC 49 ms
66,924 KB
testcase_37 AC 48 ms
65,740 KB
testcase_38 AC 47 ms
65,928 KB
testcase_39 AC 48 ms
65,016 KB
testcase_40 AC 46 ms
65,812 KB
testcase_41 AC 43 ms
62,692 KB
testcase_42 WA -
testcase_43 AC 46 ms
64,700 KB
testcase_44 WA -
testcase_45 AC 45 ms
64,340 KB
testcase_46 AC 45 ms
64,184 KB
testcase_47 AC 46 ms
63,756 KB
testcase_48 WA -
testcase_49 AC 43 ms
62,748 KB
testcase_50 AC 46 ms
63,736 KB
testcase_51 AC 45 ms
64,404 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 44 ms
63,404 KB
testcase_58 WA -
testcase_59 AC 42 ms
64,228 KB
testcase_60 WA -
testcase_61 AC 37 ms
55,052 KB
testcase_62 AC 36 ms
55,460 KB
testcase_63 AC 36 ms
55,104 KB
testcase_64 AC 37 ms
54,612 KB
testcase_65 AC 36 ms
54,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
s = input().rstrip()
t = input().rstrip()

all = 0
ok = 1
cnt = 0
for i in range(n):
    if (ord(s[i])) > ord(t[i]):
        ok = 0
    all += ord(t[i]) - ord(s[i])
    cnt += (ord(t[i]) - ord(s[i])) >= 1

if ok and all% 2 == 0:
    if all == 0:
        print('Yes')
    elif cnt == 1:
        print('No')
    else:
        print('Yes')

else:
    print('No')
0