結果
問題 |
No.505 カードの数式2
|
ユーザー |
|
提出日時 | 2017-04-21 23:01:34 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 532 bytes |
コンパイル時間 | 1,293 ms |
コンパイル使用メモリ | 159,660 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-20 06:35:15 |
合計ジャッジ時間 | 2,478 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 WA * 10 |
コンパイルメッセージ
main.cpp: In function ‘ll read()’: main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%lld",&i); | ~~~~~^~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; #define int ll #define FOR(i,a,b) for(int i=int(a);i<int(b);i++) #define REP(i,b) FOR(i,0,b) int read(){ int i; scanf("%lld",&i); return i; } signed main(){ // your code goes here int N = read(); int a[N]; a[0] = read(); FOR(i,1,N){ a[i] = read(); int a1 = a[i-1] + a[i]; int a2 = a[i-1] - a[i]; int a3 = a[i-1] * a[i]; if(a[i]!=0){ int a4 = a[i-1] / a[i]; a[i]=max({a1,a2,a3,a4}); } else a[i]=max({a1,a2,a3}); } cout << a[N-1]; }