結果
問題 | No.5 数字のブロック |
ユーザー | m0ntBL4Nc |
提出日時 | 2019-09-01 17:50:00 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,675 bytes |
コンパイル時間 | 1,114 ms |
コンパイル使用メモリ | 29,056 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 13:25:44 |
合計ジャッジ時間 | 2,691 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 0 ms
5,376 KB |
testcase_32 | AC | 1 ms
5,376 KB |
testcase_33 | AC | 1 ms
5,376 KB |
ソースコード
#include <stdio.h> #include <string.h> #include <stdlib.h> int main(void) { int boxWidth; int nBlock; // Get boxWidth and nBlock scanf("%d", &boxWidth); scanf("%d", &nBlock); int blockWidths[nBlock]; int nBlockWidth = sizeof blockWidths / sizeof blockWidths[0]; char buffer[10000]; rewind(stdin); // clear stdin fgets(buffer, 10000, stdin); char *p_buffer; p_buffer = strtok(buffer, " "); // Set blockWidths element int blockWidthsIndex = 0; while(p_buffer != NULL) { int blockWidth = atoi(p_buffer); blockWidths[blockWidthsIndex++] = blockWidth; p_buffer = strtok(NULL, " "); } // bubble-sort blockWidths (asc) int temp; int isChange = 1; // if changed then isChange -> 1 while(isChange == 1) { isChange = 0; for(int i=0; i<nBlockWidth-1; i++) { for(int j=i+1; j<nBlockWidth; j++) { if(blockWidths[i] > blockWidths[j]) { temp = blockWidths[i]; blockWidths[i] = blockWidths[j]; blockWidths[j] = temp; isChange = 1; } } } } // printf("\n"); // for(int i=0; i<10; i++) { // printf("%d\n", blockWidths[i]); // } // printf("%d\n", nBlockWidth); // put block in box int nBlockCanIntoBox = 0; int sumWidth = 0; for(int i=0; i<nBlockWidth; i++) { sumWidth += blockWidths[i]; if(sumWidth > boxWidth) { break; } else { nBlockCanIntoBox++; } } printf("%d\n", nBlockCanIntoBox); return 0; }