結果
問題 | No.5 数字のブロック |
ユーザー | drymouse |
提出日時 | 2019-12-12 22:39:41 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,180 bytes |
コンパイル時間 | 1,402 ms |
コンパイル使用メモリ | 29,952 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 19:45:27 |
合計ジャッジ時間 | 3,936 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> void sort(int *x, size_t s); void swap(int *a, int *b); int main(void) { int L, N; int W[20] = {0}; int *pW; int sW; pW = W; sW = sizeof(W) / sizeof(W[0]); printf("箱の大きさ:"); scanf("%d", &L); printf("ブロックの数:"); scanf("%d", &N); printf("ブロックの大きさ:"); for (int i = 0; i < N; i++) { scanf("%d", &W[i]); } sort(pW, sW); int sum = 0; int Nmax = N; for (int i = 0; i < sW; i++) { if (W[i] == 0) { Nmax = i; break; } sum += W[i]; if (sum > L) { Nmax = i; break; } } printf("答. %d\n", Nmax); return EXIT_SUCCESS; } void sort(int *x, size_t s) { for (int i = s; i > 1; i--) { for (int j = 1; j < i; j++) { if (*(x+j) == 0) { break; } else if (*(x+j-1) > *(x+j)) { swap(x+j-1, x+j); } } } return; } void swap(int *a, int *b) { int t; t = *a; *a = *b; *b = t; return; }