結果
問題 |
No.1468 Colourful Pastel
|
ユーザー |
|
提出日時 | 2024-07-04 19:50:31 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 94 ms / 1,000 ms |
コード長 | 192 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 23,196 KB |
最終ジャッジ日時 | 2024-07-04 19:50:34 |
合計ジャッジ時間 | 2,175 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
n = int(input()) a = input().split() b = input().split() col = ["Red", "Orange", "Yellow", "Green", "Cyan", "Blue", "Violet"] for c in col: if a.count(c) != b.count(c): print(c)