結果

問題 No.2460 #強調#
ユーザー 2475057t2475057t
提出日時 2024-07-11 19:53:41
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 29,184 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-11 19:53:44
合計ジャッジ時間 2,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

//No.2460 #強調#
#include <stdio.h>

int main(void){

    char s[101];
    scanf("%s", s);

    int cnt1 = -1, cnt2 = -1, cnt3 = -1;
    char r[101];
    for(int i = 0; s[i] != '\0'; i++){
        if(s[i] != '#'){
            cnt1 = i;
            break;
        }
    }
    if(cnt1 != -1){
        for(int j = cnt1 + 1; s[j] != '\0'; j++){
            if(s[j] != '#'){
                cnt2 = j;
                break;
            }
        }
    }
    if(cnt1!=-1 && cnt2!=-1){
        for(int k = 0; k<(cnt2 - cnt1 - 1); k++){
            r[k] = s[cnt1+1+k];
            cnt3 = k;
        }
    }
    r[cnt3 + 1] = '\0';

    printf("%s\n", r);

    return 0;
}
0