結果
問題 |
No.932 解法破綻!高橋君
|
ユーザー |
|
提出日時 | 2019-11-29 22:05:49 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 300 bytes |
コンパイル時間 | 444 ms |
コンパイル使用メモリ | 57,084 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-20 22:19:27 |
合計ジャッジ時間 | 1,655 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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; }