結果

問題 No.494 yukicoder
ユーザー ThorIIDX
提出日時 2017-07-31 00:05:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 63,360 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-10 22:43:22
合計ジャッジ時間 1,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main() {
	string co,S;
	cin >> S;
	co = "yukicoder";
	for(int i=0;i<9;i++){
		if(S[i] != co[i]){
			cout << co[i] << endl;
		}
	}
	return 0;
}
0