結果

問題 No.1468 Colourful Pastel
ユーザー itsy68itsy68
提出日時 2022-05-03 01:45:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 1,000 ms
コード長 587 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 95,484 KB
最終ジャッジ日時 2024-07-02 05:46:58
合計ジャッジ時間 3,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
95,484 KB
testcase_01 AC 104 ms
95,300 KB
testcase_02 AC 52 ms
63,080 KB
testcase_03 AC 53 ms
62,352 KB
testcase_04 AC 53 ms
63,744 KB
testcase_05 AC 52 ms
62,512 KB
testcase_06 AC 53 ms
64,352 KB
testcase_07 AC 53 ms
63,616 KB
testcase_08 AC 54 ms
64,064 KB
testcase_09 AC 53 ms
63,748 KB
testcase_10 AC 54 ms
63,592 KB
testcase_11 AC 54 ms
62,580 KB
testcase_12 AC 52 ms
64,492 KB
testcase_13 AC 53 ms
62,220 KB
testcase_14 AC 53 ms
63,428 KB
testcase_15 AC 53 ms
63,692 KB
testcase_16 AC 53 ms
63,632 KB
testcase_17 AC 54 ms
62,984 KB
testcase_18 AC 53 ms
62,584 KB
testcase_19 AC 54 ms
63,044 KB
testcase_20 AC 54 ms
63,624 KB
testcase_21 AC 55 ms
63,328 KB
testcase_22 AC 54 ms
62,664 KB
testcase_23 AC 54 ms
63,056 KB
testcase_24 AC 54 ms
63,344 KB
testcase_25 AC 53 ms
62,924 KB
testcase_26 AC 54 ms
62,724 KB
testcase_27 AC 101 ms
92,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
import sys
from itertools import combinations, permutations, product, accumulate, groupby
from collections import defaultdict, deque, Counter
from functools import reduce
from operator import add, mul
import heapq
import bisect
import math
import copy

# sys.setrecursionlimit(10 ** 9)
input = lambda: sys.stdin.readline().rstrip()
INF = float("inf")
MOD = 10 ** 9 + 7

N = int(input())
A = list(input().split())
B = list(input().split())
a_counter = Counter(A)
b_counter = Counter(B)
print(*(a_counter - b_counter).keys())
0