

Time Limit: 2 sec / Memory Limit: 1024 MB
注意
この問題に対する言及は、2019年12月29日 05:00 JST まで禁止されています。言及がなされた場合、賠償が請求される可能性があります。
試験後に総合得点や認定級を公表するのは構いませんが、どの問題が解けたかなどの情報は発信しないようにお願いします。
問題文
長さ の整数列がサーバーに保管されている。つい先ほどまで、この列には から までの整数が 個ずつ含まれていた。
しかし、たった今発生したトラブルにより、列のいずれか 個の要素が別の 以上 以下の整数に書き換えられた可能性がある。あるいは、何の書き換えも発生しなかったかもしれない。
トラブル発生後の整数列 が与えられる。これを読み込み、書き換えが発生していたかを判定し、発生していた場合にはどの整数がどの整数に書き換えられたかを報告するプログラムを作成せよ。
制約
- は問題文中の状況と矛盾しない。
入力
入力は以下の形式で標準入力から与えられる。
出力
書き換えが発生していなかった場合、Correct
と出力せよ。
書き換えが発生していた場合、整数 が整数 に書き換えられたとして、 と をこの順にスペース区切りで出力せよ。
入力例 1Copy
6 1 5 6 3 2 6
出力例 1Copy
6 4
元の整数列には から までの整数が 個ずつ含まれていたはずだが、入力された整数列は を 個含み、 を 個も含まない。よって、 が に書き換えられたと判定できる。
入力例 2Copy
7 5 4 3 2 7 6 1
出力例 2Copy
Correct
元の整数列には から までの整数が 個ずつ含まれていたはずであり、入力された整数列もこれを満たす。よって、書き換えは発生しなかったと判定できる。
Warning
Do not make any mention of this problem until December 29, 2019, 05:00 a.m. JST. In case of violation, compensation may be demanded.
After the examination, you can reveal your total score and grade to others, but nothing more (for example, which problems you solved).
Problem Statement
We have an integer sequence of length stored in our server. Until just a minute ago, this sequence contained one occurrence of each integer from to .
However, trouble has occurred, which may have replaced one element in the sequence with another integer between and (inclusive). It is also possible that there was no such overwrite.
Given is the integer sequence after the trouble, . Write a program that reads it and determines whether there was an overwrite. If there was an overwrite, the program should also report which integer was replaced with which integer.
Constraints
- The sequence is consistent with the situation described in Problem Statement.
Input
Input is given from Standard Input in the following format:
Output
If there was no overwrite, print Correct
.
If there was an overwrite, let us say the integer was replaced with the integer . Print and in this order, with space in between.
Sample Input 1Copy
6 1 5 6 3 2 6
Sample Output 1Copy
6 4
The original sequence should have contained one occurrence of each integer from to . However, the given sequence contains two occurrences of and no occurrence of . Thus, we can see that was replaced with .
Sample Input 2Copy
7 5 4 3 2 7 6 1
Sample Output 2Copy
Correct
The original sequence should have contained one occurrence of each integer from to , and so does the given sequence. Thus, we can see that there was no overwrite.