結果
問題 | No.77 レンガのピラミッド |
ユーザー | 158b |
提出日時 | 2015-06-07 21:28:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,016 bytes |
コンパイル時間 | 539 ms |
コンパイル使用メモリ | 72,228 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 14:35:55 |
合計ジャッジ時間 | 1,304 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,948 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,944 KB |
ソースコード
#include <iostream> #include <algorithm> #include <functional> #include <string> #include <climits> #include <vector> #include <numeric> #include <complex> using namespace std; #define long __int64 //#define __int64 long long #define REP(i,a,b) for(int i=a;i<b;i++) #define rep(i,n) REP(i,0,n) const int Vecy[4] = {0,-1,0,1}; const int Vecx[4] = {1,0,-1,0}; int main(){ int n; int from[300] = {0}; int to[300] = {0};//1,4,9,16... int sum = 0; int weight; int check; int plus = 0; int minus = 0; cin >> n; rep(i,n){ cin >> from[i]; sum += from[i]; } check = 4; weight = 1; while(sum >= check){ weight += 2; check += weight + 2; } for(int i=0; i<=weight/2; i++){ to[i] = i + 1; to[weight-i-1] = i + 1; } for(int i=0; i<weight; i++){ //cout << to[i] << " - " << from[i] << " = " << to[i] - from[i] << endl; if(from[i] < to[i]){ plus += to[i] - from[i]; }else if(from[i] > to[i]){ minus += from[i] - to[i]; } } cout << max(plus, minus) << endl; return 0; }