結果

問題 No.1468 Colourful Pastel
ユーザー NoaSaber
提出日時 2021-04-04 20:07:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 1,000 ms
コード長 234 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 82,956 KB
実行使用メモリ 85,780 KB
最終ジャッジ日時 2024-12-28 05:34:11
合計ジャッジ時間 3,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
from collections import Counter
A=Counter(list(input().split()))
B=Counter(list(input().split()))
l=["Violet","Orange","Yellow","Red","Green","Cyan","Blue"]
for i in l:
    if A[i]!=B[i]:
        print(i)
        exit()
0