結果

問題 No.632 穴埋め門松列
ユーザー 👑 CleyL
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 6
権限があれば一括ダウンロードができます

ソースコード

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