結果

問題 No.494 yukicoder
ユーザー Eclair1015
提出日時 2018-07-10 20:25:02
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 60,904 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 19:26:46
合計ジャッジ時間 968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include<string>

using namespace std;
int main(){
	string m = "yukicoder";
	string s;
	cin >> s;
	for (int i = 0; i < s.size(); i++) {
		if (s[i] != m[i]) {
			cout << s[i] << endl;
		}
	}
}
0