結果

問題 No.2773 Wake up Record 1
ユーザー 2475057t2475057t
提出日時 2024-07-09 22:32:30
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 451 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-09 22:32:32
合計ジャッジ時間 2,390 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//Wake up Record 1
#include <stdio.h>
#include <string.h>

int main(void){
    int N, cnt = 0;
    scanf("%d", &N);
    char s[N+1];
    int k[N];
    scanf("%s", s);
    
    for(int i=1; i<N-1; i++){
        if((s[i-1]=='x') && (s[i]=='o')){
            k[cnt] = i + 1;
            cnt++;
        }
        else{}
    }
    
    printf("%d\n", cnt);
    for(int i=0; i<cnt; i++){
        printf("%d ", k[i]);
    }
    printf("\n");

    return 0;
}
0