結果
| 問題 | No.932 解法破綻!高橋君 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2019-11-29 22:05:34 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                RE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 300 bytes | 
| コンパイル時間 | 548 ms | 
| コンパイル使用メモリ | 63,872 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-20 22:19:08 | 
| 合計ジャッジ時間 | 1,508 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 18 RE * 2 | 
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main(){
    string s;
    cin >> s;
    for (int i=0; i<s.size()-3;i=i+3){
        if (s.at(i)!=s.at(i+3)) {
            cout << "Failed..." << endl;
            return 0;
        }
    }
    cout << "Done!" << endl;
    
    return 0;
}
            
            
            
        