結果

問題 No.78 クジ付きアイスバー
ユーザー tsuishitsuishi
提出日時 2021-02-22 13:54:11
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 3,272 ms / 5,000 ms
コード長 1,365 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 31,732 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-21 10:12:31
合計ジャッジ時間 48,276 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 553 ms
4,348 KB
testcase_06 AC 1,426 ms
4,348 KB
testcase_07 AC 563 ms
4,348 KB
testcase_08 AC 867 ms
4,348 KB
testcase_09 AC 2,857 ms
4,348 KB
testcase_10 AC 1,494 ms
4,348 KB
testcase_11 AC 749 ms
4,348 KB
testcase_12 AC 2,489 ms
4,348 KB
testcase_13 AC 2,652 ms
4,348 KB
testcase_14 AC 2,673 ms
4,348 KB
testcase_15 AC 1,047 ms
4,348 KB
testcase_16 AC 1,887 ms
4,348 KB
testcase_17 AC 2,212 ms
4,348 KB
testcase_18 AC 2,262 ms
4,348 KB
testcase_19 AC 2,393 ms
4,348 KB
testcase_20 AC 2,652 ms
4,348 KB
testcase_21 AC 3,059 ms
4,348 KB
testcase_22 AC 2,768 ms
4,348 KB
testcase_23 AC 1 ms
4,348 KB
testcase_24 AC 1 ms
4,348 KB
testcase_25 AC 1 ms
4,348 KB
testcase_26 AC 1 ms
4,348 KB
testcase_27 AC 1 ms
4,348 KB
testcase_28 AC 1 ms
4,348 KB
testcase_29 AC 1 ms
4,348 KB
testcase_30 AC 1 ms
4,348 KB
testcase_31 AC 1 ms
4,348 KB
testcase_32 AC 1 ms
4,348 KB
testcase_33 AC 3 ms
4,348 KB
testcase_34 AC 644 ms
4,348 KB
testcase_35 AC 1,197 ms
4,348 KB
testcase_36 AC 2,428 ms
4,348 KB
testcase_37 AC 3,272 ms
4,348 KB
testcase_38 AC 3,263 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
// Yukicoder №78 クジ付きアイスバー ★★☆
// https://yukicoder.me/problems/no/78
// ***********************
#define PRINCR do{printf("\n");fflush(stdout);}while(0)
#define GETLINE(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0)
#define REP(a,b) for(int a=0;a<(int)(b);++a)
static char *GETWORD(char* str) {char c;char *cp;cp=&str[0];c=fgetc(stdin);while( c != EOF ){if((c==' ')||( c=='\n')) break;*cp++=c;c=fgetc(stdin);}*cp='\0';return &str[0];}
#define	GETINTS(a,b) {char s[34];int *ap=a;REP(i,b){GETWORD(s);sscanf(s,"%d", ap);ap++;}}
static int GETLINEINT(void) {char s[34];GETLINE(s);return atoi(s);}
static int GETWORDINT(void) {char s[34];GETWORD(s);return atoi(s);}
static long GETWORDLONG(void) {char s[34];GETWORD(s);return atol(s);}
#define SWAP(type,a,b) do{type _c;_c=a;a=b;b=_c;}while(0)
#define PI	  ((double)3.141592653589793238462643383279)
int main() {
	char	str[258];
	int		box;
	long	want;
	long	buyed = 0;
	long	atari = 0;
	long	eat = 0;
	int		idx;

	box = GETWORDINT();
	want = GETWORDLONG();
	GETLINE(str);
	idx = -1;
	while( eat < want ) {
		if( atari ) {
			atari--;
		} else {
			buyed++;
		}
		idx++;
		if( idx >= box ) idx = 0;
		atari += str[idx] - '0';
		eat++;
	}
	printf("%ld\n", buyed );
	return 0;
}

0