結果
問題 | No.78 クジ付きアイスバー |
ユーザー | Hissha_ |
提出日時 | 2018-04-09 16:20:22 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 688 bytes |
コンパイル時間 | 296 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 20:37:45 |
合計ジャッジ時間 | 5,478 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | RE | - |
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 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
コンパイルメッセージ
main.c: In function 'main': main.c:34:18: warning: implicit declaration of function 'floor' [-Wimplicit-function-declaration] 34 | box=(int)floor(k/n); | ^~~~~ main.c:2:1: note: include '<math.h>' or provide a declaration of 'floor' 1 | #include <stdio.h> +++ |+#include <math.h> 2 | main.c:34:18: warning: incompatible implicit declaration of built-in function 'floor' [-Wbuiltin-declaration-mismatch] 34 | box=(int)floor(k/n); | ^~~~~ main.c:34:18: note: include '<math.h>' or provide a declaration of 'floor'
ソースコード
#include <stdio.h> int main(void) { // your code goes here int n, k, s[50], atari=0, a=0, count=0, box; int i; char sc[50]; scanf("%d %d", &n, &k); scanf("%s", sc); for(i=0;i!=n;i++){ s[i]=(int)(sc[i]-'0'); } for(i=0;count!=k;i++){ if(atari==0) a++; if(atari!=0) atari--; atari+=s[i]; count++; } if(k<=n){ printf("%d\n", a); return 0; } // printf("a=%d\n", atari); // printf("n=%d\n", n); if(atari>=a){ printf("%d\n", a); return 0; } box=(int)floor(k/n); a*=box; count+=box*n; for(i=0;count!=k;i++){ if(atari==0) a++; if(atari!=0) atari--; atari+=s[i]; count++; } // printf("box=%d\n", box); printf("%d\n", a); return 0; }