結果

問題 No.1468 Colourful Pastel
ユーザー NoaSaberNoaSaber
提出日時 2021-04-04 20:07:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 234 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 87,308 KB
実行使用メモリ 96,968 KB
最終ジャッジ日時 2023-08-27 21:34:00
合計ジャッジ時間 4,511 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
93,464 KB
testcase_01 AC 137 ms
93,636 KB
testcase_02 AC 90 ms
71,432 KB
testcase_03 AC 90 ms
71,656 KB
testcase_04 AC 90 ms
71,276 KB
testcase_05 AC 92 ms
71,344 KB
testcase_06 AC 92 ms
71,768 KB
testcase_07 AC 93 ms
71,400 KB
testcase_08 AC 91 ms
71,296 KB
testcase_09 AC 92 ms
71,576 KB
testcase_10 AC 91 ms
71,656 KB
testcase_11 AC 91 ms
71,348 KB
testcase_12 AC 93 ms
71,640 KB
testcase_13 AC 93 ms
71,300 KB
testcase_14 AC 92 ms
71,508 KB
testcase_15 AC 91 ms
71,764 KB
testcase_16 AC 92 ms
71,440 KB
testcase_17 AC 94 ms
71,532 KB
testcase_18 AC 91 ms
71,460 KB
testcase_19 AC 94 ms
71,552 KB
testcase_20 AC 91 ms
71,652 KB
testcase_21 AC 92 ms
71,356 KB
testcase_22 AC 91 ms
71,448 KB
testcase_23 AC 93 ms
71,788 KB
testcase_24 AC 93 ms
71,296 KB
testcase_25 AC 92 ms
71,592 KB
testcase_26 AC 94 ms
71,604 KB
testcase_27 AC 137 ms
96,968 KB
権限があれば一括ダウンロードができます

ソースコード

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