結果
問題 | No.5 数字のブロック |
ユーザー | ReERishun |
提出日時 | 2020-03-23 04:33:36 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,579 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 30,568 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-07 20:39:00 |
合計ジャッジ時間 | 3,736 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 133 ms
6,940 KB |
testcase_04 | AC | 80 ms
6,940 KB |
testcase_05 | AC | 214 ms
6,940 KB |
testcase_06 | AC | 85 ms
6,944 KB |
testcase_07 | AC | 56 ms
6,940 KB |
testcase_08 | AC | 110 ms
6,944 KB |
testcase_09 | AC | 14 ms
6,940 KB |
testcase_10 | AC | 254 ms
6,944 KB |
testcase_11 | AC | 53 ms
6,944 KB |
testcase_12 | AC | 145 ms
6,940 KB |
testcase_13 | AC | 207 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 222 ms
6,940 KB |
testcase_17 | AC | 315 ms
6,944 KB |
testcase_18 | AC | 271 ms
6,944 KB |
testcase_19 | AC | 353 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 1 ms
6,944 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 77 ms
6,944 KB |
testcase_30 | AC | 18 ms
6,944 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#include<stdio.h> // 区切り文字 void numin(int index, int numBox[10000]) { char str; for (int i = 0; i<index; i++) numBox[i] = 0; for (int i = 0; i<index; i++) { for (int j = 0;; j++) { str = getchar(); if (str == '\n' && i == 0) { i = -1; break; } else if (str == '\n' && i != 0) { i = index; break; } else if (str < '0' || str > '9') { break; } else numBox[i] = numBox[i] * 10 + (int)str - (int)'0'; } } return; } int main() { // 変数宣言 int boxWidth = 0; int blockNum = 0; int blockWidth[10000]; int ans = 0; // L 大きな箱の幅を表す scanf("%d", &boxWidth); // N ブロックの数を表す scanf("%d", &blockNum); // W1 W2...WN 各ブロックの幅を表す if (blockNum == 1) { scanf("%d", &blockWidth[0]); }else{ numin(blockNum, blockWidth); } // エラー処理 if (boxWidth > 10000) { return 1; } if (blockNum > 10000) { return 1; } // 各ブロックをソート int cnt = 0; int put = 0; int flg = 0; if (blockNum != 1) { while (1) { if (blockWidth[cnt]>blockWidth[cnt + 1]) { put = blockWidth[cnt]; blockWidth[cnt] = blockWidth[cnt + 1]; blockWidth[cnt + 1] = put; flg = 1; } cnt++; if (cnt >= blockNum - 1) { if (flg == 0) { break; } else { cnt = 0; flg = 0; } } } } // ブロックをはめる int blockSum = 0; for (int i = 0; blockSum < boxWidth; i++) { blockSum += blockWidth[i]; ans++; } if(blockSum > boxWidth) ans--; printf("%d", ans); return 0; }