結果

問題 No.632 穴埋め門松列
ユーザー ElkElk
提出日時 2018-05-29 16:22:57
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 24,448 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 08:01:43
合計ジャッジ時間 591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 0 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 0 ms
6,940 KB
testcase_05 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%c", &num[i]);
      |         ~~~~~^~~~~~~~~~~~~~~
main.cpp:23:11: warning: ‘i_q’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   23 |     }else if(i_q == 2){
      |           ^~

ソースコード

diff #

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main(){
    char num[3];
    int i, i_q;

    for(i = 0; i < 3; i++){
        scanf("%c", &num[i]);
        if(num[i] != '?'){
            i_q = i;
        }
    }
    if(i_q == 0){
        if(num[1] == '2'){
            printf("4\n");
        }else{
            printf("1\n");
        }
    }else if(i_q == 1){
        printf("14\n");
    }else if(i_q == 2){
        if(num[1] == '2'){
            printf("4\n");
        }else{
            printf("1\n");
        }
    }
    return 0;
}
0