結果
問題 | No.343 手抜き工事のプロ |
ユーザー | FF256grhy |
提出日時 | 2015-08-12 11:26:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,047 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 23,040 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 06:54:21 |
合計ジャッジ時間 | 1,436 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 0 ms
6,940 KB |
testcase_02 | AC | 0 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 0 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 0 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 0 ms
6,940 KB |
testcase_09 | AC | 0 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 0 ms
6,944 KB |
testcase_12 | AC | 0 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 0 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 4 ms
6,940 KB |
testcase_22 | AC | 5 ms
6,940 KB |
testcase_23 | AC | 8 ms
6,940 KB |
testcase_24 | AC | 9 ms
6,940 KB |
testcase_25 | AC | 11 ms
6,940 KB |
testcase_26 | AC | 11 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d%d", &n, &l); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:23:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf("%d", &x[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
// 想定WAその2 #include <stdio.h> #define MAX_N 100000 #define MAX_L 10000 #define MAX_X 5000 int n, l, x[MAX_N + 1]; int abs(int a) { return 0 < a ? a : -a; } int main(void) { int i; scanf("%d%d", &n, &l); if( ! ( 1 <= n && n <= MAX_N ) ) { return 0; } // assert if( ! ( 1 <= l && l <= MAX_L ) ) { return 0; } // assert // 色々と面倒なので, x[i] には上から i 番目を入れる x[n] = 0; // 土台の位置(?) x[n - 1] = 0; for(i = n - 2; 0 <= i; i--) { scanf("%d", &x[i]); if( ! ( abs( x[i] ) <= MAX_X ) ) { return 0; } // assert } // sum は i より上の座標の和, i より上の重心座標は sum/i int counter = 0, sum = 0; for(i = 1; i <= n; i++) { // i==n のケースは本来不要 sum += x[i - 1]; if( l - 1 < abs(x[i - 1] - x[i]) ) { counter = -1; break; } if( // l/2 <= abs( sum/i - x[i] ) の両辺に 2i を掛けた i * l <= abs( 2 * sum - 2 * i * x[i] ) || i * l <= abs( 2 * sum - 2 * i * x[i - 1] ) ) { counter++; } } printf("%d\n", counter); return 0; }