結果

問題 No.415 ぴょん
ユーザー yoshikiriyoshikiri
提出日時 2016-10-03 18:48:36
言語 C90
(gcc 11.4.0)
結果
TLE  
(最新)
MLE  
(最初)
実行時間 -
コード長 362 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 21,376 KB
実行使用メモリ 812,580 KB
最終ジャッジ日時 2024-11-21 15:19:05
合計ジャッジ時間 9,997 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
12,068 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 0 ms
5,248 KB
testcase_03 TLE -
testcase_04 MLE -
testcase_05 TLE -
testcase_06 AC 178 ms
81,244 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 TLE -
testcase_09 AC 413 ms
497,056 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 0 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 0 ms
6,816 KB
testcase_15 AC 0 ms
6,816 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 0 ms
6,816 KB
testcase_18 AC 0 ms
6,820 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 0 ms
6,816 KB
testcase_21 TLE -
testcase_22 AC 3 ms
6,688 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%d %d",&n,&d);
      |         ^~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>

int main(void){
	int i,n,d,now=0,cnt=0;
	scanf("%d %d",&n,&d);

	
	int* flag;
	flag = (int*)malloc(sizeof(int)*n);
	for(i=1;i<n;i++) flag[i] = 0;
	flag[0] = 1;

	while(1){
		if(n-1-now >= d) now += d;
		else now = d-n+now;

		if(flag[now] == 0) flag[now] = 1;
		else break;

		cnt++;
	}

	printf("%d\n",cnt);

	return 0;

}
0