結果

問題 No.1281 Cigarette Distribution
ユーザー tailstails
提出日時 2020-11-09 10:53:32
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 1,205 ms
コンパイル使用メモリ 30,720 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-22 15:59:23
合計ジャッジ時間 2,523 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 0 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 0 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 21 ms
5,376 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 13 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 35 ms
5,376 KB
testcase_19 AC 33 ms
5,376 KB
testcase_20 AC 34 ms
5,376 KB
testcase_21 AC 19 ms
5,376 KB
testcase_22 AC 22 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:20:1: warning: return type defaults to 'int' [-Wimplicit-int]
   20 | main(){
      | ^~~~
main.c: In function 'main':
main.c:21:9: warning: implicit declaration of function 'read' [-Wimplicit-function-declaration]
   21 |         read(0,rbuf,sizeof rbuf);
      |         ^~~~
main.c:34:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   34 |         write(1,wp,(wbuf+sizeof wbuf)-wp);
      |         ^~~~~
main.c:35:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   35 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

char rbuf[16];
#define RD(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}

char wbuf[11*200000];

#define MD 1000000007

long mp(long v,long b,long e){
	while(e){
		if(e&1) v=v*b%MD;
		b=b*b%MD;
		e>>=1;
	}
	return v;
}

main(){
	read(0,rbuf,sizeof rbuf);
	char*rp=rbuf;
	char*wp=wbuf+sizeof wbuf;
	RD(n);
	RD(m);
	++n;
	for(int x=m;x;--x){
		long a=n/x;
		long b=n%x;
		long v=mp(mp(a-1,a+1,b),a,x-b-1);
		*--wp=10;
		while(*--wp=v%10+48,v/=10);
	}
	write(1,wp,(wbuf+sizeof wbuf)-wp);
	_exit(0);
}
0