結果

問題 No.494 yukicoder
ユーザー conf
提出日時 2017-03-24 22:22:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 235 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 64,000 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 02:23:32
合計ジャッジ時間 1,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

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

}
0