結果

問題 No.505 カードの数式2
ユーザー rtomp
提出日時 2017-05-31 18:41:47
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 1,293 ms
コンパイル使用メモリ 157,824 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 20:26:11
合計ジャッジ時間 2,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10 WA * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
int main(void){
    // Here your code !
    int n,a,ans;
    cin >> n >> ans;
    while(--n)
    {
        cin >> a;
        
        if(a <= 0) ans -= a;
        else if (a == 1) ans += a;
        else ans *= a;
    }
    cout << ans << endl;
}
0