結果

問題 No.1468 Colourful Pastel
ユーザー miya145592miya145592
提出日時 2023-05-07 17:04:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 1,000 ms
コード長 155 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 97,548 KB
最終ジャッジ日時 2024-11-24 16:22:36
合計ジャッジ時間 2,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
97,548 KB
testcase_01 AC 113 ms
97,520 KB
testcase_02 AC 35 ms
52,264 KB
testcase_03 AC 34 ms
52,488 KB
testcase_04 AC 33 ms
53,112 KB
testcase_05 AC 34 ms
53,412 KB
testcase_06 AC 34 ms
53,124 KB
testcase_07 AC 34 ms
52,824 KB
testcase_08 AC 35 ms
52,152 KB
testcase_09 AC 34 ms
52,160 KB
testcase_10 AC 34 ms
53,148 KB
testcase_11 AC 32 ms
52,608 KB
testcase_12 AC 34 ms
53,500 KB
testcase_13 AC 33 ms
52,516 KB
testcase_14 AC 35 ms
52,768 KB
testcase_15 AC 35 ms
52,796 KB
testcase_16 AC 33 ms
52,156 KB
testcase_17 AC 34 ms
51,956 KB
testcase_18 AC 33 ms
52,468 KB
testcase_19 AC 33 ms
53,236 KB
testcase_20 AC 33 ms
53,068 KB
testcase_21 AC 33 ms
53,188 KB
testcase_22 AC 33 ms
52,460 KB
testcase_23 AC 33 ms
52,064 KB
testcase_24 AC 33 ms
52,012 KB
testcase_25 AC 32 ms
52,128 KB
testcase_26 AC 33 ms
52,184 KB
testcase_27 AC 58 ms
80,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = input().split()
B = input().split()
A.sort()
B.sort()
B.append("")
for a, b in zip(A, B):
    if a!=b:
        print(a)
        exit()
0