結果
問題 | No.77 レンガのピラミッド |
ユーザー | tkmst201 |
提出日時 | 2017-04-24 11:48:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,214 bytes |
コンパイル時間 | 1,375 ms |
コンパイル使用メモリ | 160,152 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 11:47:32 |
合計ジャッジ時間 | 2,195 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:25:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 25 | REP(i, n) scanf("%d", a + i); | ~~~~~^~~~~~~~~~~~~ main.cpp:37:13: warning: ‘maxs’ may be used uninitialized in this function [-Wmaybe-uninitialized] 37 | int maxs; | ^~~~
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,a,b) for(int i=(a);i<(b);i++) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; } template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; } typedef unsigned long long ull; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const ll INF = 1ll<<29; const ll MOD = 1000000007; const double EPS = 1e-10; int main() { int n, a[100]; cin >> n; REP(i, n) scanf("%d", a + i); int sum[101]; sum[0] = 0; REP(i, n) sum[i + 1] = sum[i] + a[i]; int cnt[10000]; cnt[1] = 1; for (int i = 3; i < 10000; i += 2) cnt[i] = cnt[i - 2] + i; int maxs; for (int i = 1; i < 10000; i += 2) if (sum[n] >= cnt[i]) maxs = i; int ans = 0; if (maxs / 2 < n && a[maxs / 2] > maxs / 2 + 1) ans += a[maxs / 2] - (maxs / 2 + 1); for (int i = 0; i < maxs / 2; i++) { if (i >= n) break; if (a[i] > i + 1) ans += a[i] - (i + 1); if (maxs - i - 1 < n && a[maxs - i - 1] > i + 1) ans += a[maxs - i - 1] - (i + 1); } cout << ans << endl; return 0; }