結果
問題 | No.1292 パタパタ三角形 |
ユーザー | tails |
提出日時 | 2020-11-24 00:15:24 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 983 bytes |
コンパイル時間 | 1,225 ms |
コンパイル使用メモリ | 30,592 KB |
実行使用メモリ | 9,856 KB |
最終ジャッジ日時 | 2024-07-23 18:14:24 |
合計ジャッジ時間 | 2,153 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 8 ms
7,296 KB |
testcase_08 | AC | 8 ms
6,944 KB |
testcase_09 | AC | 13 ms
9,856 KB |
testcase_10 | AC | 13 ms
9,856 KB |
testcase_11 | AC | 10 ms
9,680 KB |
testcase_12 | AC | 12 ms
9,856 KB |
testcase_13 | AC | 7 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.c:29:1: warning: return type defaults to 'int' [-Wimplicit-int] 29 | main(){ | ^~~~ main.c: In function 'main': main.c:30:15: warning: implicit declaration of function 'read' [-Wimplicit-function-declaration] 30 | int n=read(0,rbuf+1,(sizeof rbuf)-1); | ^~~~ main.c:48:17: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 48 | write(1,&d,n); | ^~~~~ main.c:50:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 50 | _exit(0); | ^~~~~ | _Exit
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") char*mmap(); #define RD(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;} #define WTHI(v) {long _z=v,_n=0,_d=0;while(++_n,_d=_d<<8|0x30|_z%10,_z/=10);*(long*)wp=_d;wp+=_n;} #define WTLO(v) {long _z=v,_n=8,_d=0;while(_d=_d<<8|0x30|_z%10,_z/=10,--_n);*(long*)wp=_d;wp+=8;} #define WT(v) if(v>=100000000){WTHI(v/100000000);WTLO(v);}else{WTHI(v);} #define HASH_BITS 20 long hash[1<<HASH_BITS]; int hash_add(long x){ int h=x&(1<<HASH_BITS)-1; while(1){ if(hash[h]==0){ hash[h]=x; return 1; } if(hash[h]==x){ return 0; } h=h+1&(1<<HASH_BITS)-1; } } char rbuf[200004]; main(){ int n=read(0,rbuf+1,(sizeof rbuf)-1); rbuf[n]=0; rbuf[0]=97; char*rp=rbuf; long x[100]; x[97]=0; x[98]=1; x[99]=1e9+7; long s=0; int z=0; for(int c;c=*rp++,c;){ x[c]=s-x[c]*2; s=x[97]+x[98]+x[99]; z+=hash_add(s); } { long n=0,d=0; while(++n,d=d<<8|0x30|z%10,z/=10); write(1,&d,n); } _exit(0); }