結果
問題 | No.932 解法破綻!高橋君 |
ユーザー |
![]() |
提出日時 | 2019-11-29 21:53:58 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 498 bytes |
コンパイル時間 | 1,708 ms |
コンパイル使用メモリ | 158,544 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-20 21:59:15 |
合計ジャッジ時間 | 2,455 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { string s; cin >> s; bool flag =true; for(int i=0;i<s.size();i++){ if(i%3==0){ if(s[i]!='A'){ flag = false; } }else if(i%3==1){ if(s[i]!='C'){ flag = false; } }else{ if(s[i]!=','){ flag =false; } } } if(flag == true){ cout << "Done!"<<endl; }else{ cout << "Failed..." <<endl; } }