Submission #00121


ソースコード

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,f=0,f2=0,x=0,count=0;
string s1[1],s2[1],s3[1];
cin >> s1[0] >> n;
for(int cas=0;cas<n;cas++){
cin >> s2[0];
for(int i=0;i<s2[0].size();i++){
if(s1[0][0] == s2[0][i]){
x=i+1;
for(int j=1;j<s1[0].size()-1;j++){
if(x-1 == s2[0].size()){
x=0;
}
if(s1[0][j] == s2[0][x]){
x++;
} else{
f2++;
}
}
if(f2 == 0){
f++;
f2=0;
}
}
}
if(f != 0){
count++;
f=0;
}
}
cout << count << endl;
return 0;
}

ステータス

項目 データ
問題 0002 - 指輪 (Ring)
ユーザー名 ei1612
投稿日時 2016-11-04 17:59:43
言語 C++11
状態 Wrong Answer
得点 4
ソースコード長 591 Byte
最大実行時間 23 ms
最大メモリ使用量 540 KB

セット

セット 得点 Cases
1 入力1 0 / 4 *1.txt
2 入力2 0 / 4 *2.txt
3 入力3 4 / 4 *3.txt
4 入力4 0 / 4 *4.txt
5 入力5 0 / 4 *5.txt

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
s1.txt WA 16 ms 476 KB
1
s2.txt WA 23 ms 460 KB
2
s3.txt AC 18 ms 436 KB
3
s4.txt WA 17 ms 540 KB
4
s5.txt WA 23 ms 520 KB
5