結果

問題 No.632 穴埋め門松列
ユーザー tokizotokizo
提出日時 2018-01-28 01:07:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 561 bytes
コンパイル時間 1,869 ms
コンパイル使用メモリ 165,392 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-09 05:44:59
合計ジャッジ時間 2,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:23:13: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized]
   23 |     cout << ans << endl;
      |             ^~~
main.cpp:13:9: note: 'ans' was declared here
   13 |     int ans;
      |         ^~~

ソースコード

diff #

#include <math.h>
#include <ctype.h>
#include <bits/stdc++.h>
using namespace std;
#define FOR(i, a, n) for (int i = a; i < n; i++)
#define REP(i, n) for(int i = 0; i < n; i++)
struct omt{omt(){ios::sync_with_stdio(false);cin.tie(0);}}star;

int main(){
    char C[3];
    REP(i, 3) cin >> C[i];

    int ans;
    if(C[0] == '?'){
        if(C[1] == '2') ans = 4;
        else ans = 1;
    }else if(C[1] == '?'){
        ans = 14;
    }else if(C[2] == '?'){
        if(C[1] == '2') ans = 4;
        else ans = 1;
    }
    cout << ans << endl;


    return 0;
}
0