結果
問題 |
No.505 カードの数式2
|
ユーザー |
|
提出日時 | 2017-05-31 18:37:24 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 291 bytes |
コンパイル時間 | 2,567 ms |
コンパイル使用メモリ | 157,396 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 20:25:36 |
合計ジャッジ時間 | 2,408 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 9 WA * 20 |
ソースコード
#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; }