結果
問題 | No.1281 Cigarette Distribution |
ユーザー | tails |
提出日時 | 2020-11-09 11:18:08 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 38 ms / 2,000 ms |
コード長 | 652 bytes |
コンパイル時間 | 135 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 15:59:28 |
合計ジャッジ時間 | 1,545 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 | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 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 | 10 ms
5,376 KB |
testcase_13 | AC | 22 ms
5,376 KB |
testcase_14 | AC | 17 ms
5,376 KB |
testcase_15 | AC | 11 ms
5,376 KB |
testcase_16 | AC | 13 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 37 ms
5,376 KB |
testcase_19 | AC | 38 ms
5,376 KB |
testcase_20 | AC | 36 ms
5,376 KB |
testcase_21 | AC | 20 ms
5,376 KB |
testcase_22 | AC | 23 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:38:25: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 38 | write(1,wbuf,wp-wbuf); | ^~~~~ main.c:42:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 42 | _exit(0); | ^~~~~ | _Exit
ソースコード
#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; RD(n); RD(m); ++n; char*wp=wbuf; for(int x=0;++x<=m;){ long a=n/x; long b=n%x; long v=mp(mp(a-1,a+1,b),a,x-b-1); char*wp1=wp; wp+=11; char*wp2=wp; *--wp2=10; while(*--wp2=v%10+48,v/=10); while(wp2!=wp1) *--wp2=32; if(!(x-m&0x1fff)){ write(1,wbuf,wp-wbuf); wp=wbuf; } } _exit(0); }