結果

問題 No.1281 Cigarette Distribution
ユーザー tailstails
提出日時 2020-11-09 11:26:32
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 34,012 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-22 15:59:42
合計ジャッジ時間 1,667 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 0 ms
6,812 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 0 ms
6,944 KB
testcase_05 AC 0 ms
6,940 KB
testcase_06 AC 0 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 0 ms
6,944 KB
testcase_09 AC 0 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 11 ms
6,944 KB
testcase_13 AC 17 ms
6,940 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 9 ms
6,944 KB
testcase_16 AC 12 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 20 ms
6,940 KB
testcase_19 AC 20 ms
6,944 KB
testcase_20 AC 20 ms
6,940 KB
testcase_21 AC 20 ms
6,940 KB
testcase_22 AC 20 ms
6,940 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:42:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   42 |         write(1,wp,(wbuf+sizeof wbuf)-wp);
      |         ^~~~~
main.c:43:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   43 |         _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;
	int x=m;
	for(;x+x>n+8;x-=4){
		*(long*)(wp-=8)=0x0a300a300a300a30l;
	}
	for(;x+x>n;--x){
		*--wp=10;
		*--wp=48;
	}
	for(;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