結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
97,520 KB
testcase_01 AC 114 ms
97,492 KB
testcase_02 AC 34 ms
52,520 KB
testcase_03 AC 32 ms
52,560 KB
testcase_04 AC 37 ms
52,564 KB
testcase_05 AC 32 ms
52,420 KB
testcase_06 AC 33 ms
53,144 KB
testcase_07 AC 35 ms
52,220 KB
testcase_08 AC 38 ms
52,016 KB
testcase_09 AC 37 ms
51,944 KB
testcase_10 AC 36 ms
52,344 KB
testcase_11 AC 37 ms
52,680 KB
testcase_12 AC 38 ms
52,684 KB
testcase_13 AC 37 ms
52,204 KB
testcase_14 AC 38 ms
52,488 KB
testcase_15 AC 37 ms
52,736 KB
testcase_16 AC 37 ms
52,756 KB
testcase_17 AC 38 ms
52,308 KB
testcase_18 AC 36 ms
53,280 KB
testcase_19 AC 37 ms
52,344 KB
testcase_20 AC 37 ms
52,496 KB
testcase_21 AC 37 ms
53,724 KB
testcase_22 AC 36 ms
52,348 KB
testcase_23 AC 35 ms
52,796 KB
testcase_24 AC 34 ms
52,124 KB
testcase_25 AC 34 ms
52,688 KB
testcase_26 AC 34 ms
52,500 KB
testcase_27 AC 61 ms
82,368 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