結果

問題 No.632 穴埋め門松列
ユーザー 👑 CleyLCleyL
提出日時 2020-01-15 16:19:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 60,212 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2025-01-03 07:11:44
合計ジャッジ時間 1,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    char a,b,c;cin>>a>>b>>c;
    if(a == '?'){
        cout << 14 << endl;
    }else if(a == '3'){
        cout << 1 << endl;
    }else{
        cout << 4 << endl;
    }
}
0