結果
問題 | No.1468 Colourful Pastel |
ユーザー |
|
提出日時 | 2021-04-23 16:28:19 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 102 ms / 1,000 ms |
コード長 | 205 bytes |
コンパイル時間 | 113 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 23,700 KB |
最終ジャッジ日時 | 2024-07-04 07:09:26 |
合計ジャッジ時間 | 2,051 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
#yuki1468 n=int(input()) a=list(map(str,input().split())) b=list(map(str,input().split())) col=['Red','Orange','Yellow','Green','Cyan','Blue','Violet'] for i in col: if a.count(i)!=b.count(i): print(i)