結果
問題 | No.800 四平方定理 |
ユーザー | bal4u |
提出日時 | 2019-04-13 06:57:45 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 222 ms / 2,000 ms |
コード長 | 1,304 bytes |
コンパイル時間 | 1,455 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 62,720 KB |
最終ジャッジ日時 | 2024-09-15 06:49:29 |
合計ジャッジ時間 | 4,173 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 100 ms
31,872 KB |
testcase_11 | AC | 103 ms
35,584 KB |
testcase_12 | AC | 106 ms
35,072 KB |
testcase_13 | AC | 99 ms
33,280 KB |
testcase_14 | AC | 98 ms
35,584 KB |
testcase_15 | AC | 104 ms
35,456 KB |
testcase_16 | AC | 95 ms
36,096 KB |
testcase_17 | AC | 105 ms
36,096 KB |
testcase_18 | AC | 115 ms
35,840 KB |
testcase_19 | AC | 111 ms
35,840 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 115 ms
35,840 KB |
testcase_23 | AC | 215 ms
62,720 KB |
testcase_24 | AC | 194 ms
62,592 KB |
testcase_25 | AC | 222 ms
62,592 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 198 ms
62,464 KB |
testcase_29 | AC | 205 ms
62,464 KB |
testcase_30 | AC | 201 ms
62,336 KB |
testcase_31 | AC | 179 ms
58,240 KB |
testcase_32 | AC | 209 ms
62,720 KB |
コンパイルメッセージ
main.c: In function 'in': main.c:9:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 9 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:17:24: note: in expansion of macro 'gc' 17 | int n = 0, c = gc(); | ^~
ソースコード
// yukicoder: No.800 四平方定理 // 2019.4.13 bal4u // ハッシュテーブル x^2 + y^2 = w^2 + D - z^2 #include <stdio.h> //// 高速入力 #if 1 #define gc() getchar_unlocked() #define pc(c) putchar_unlocked(c) #else #define gc() getchar() #define pc(c) putchar(c) #endif int in() // 非負整数の入力 { int n = 0, c = gc(); do n = 10 * n + (c & 0xf), c = gc(); while (c >= '0'); return n; } //// ハッシュテーブル #define HASHSIZ 19999999 //9999991 typedef struct { int s, cnt; } HASH; HASH hash[HASHSIZ+5], *hashend = hash + HASHSIZ; int lookup(int s) { HASH *p = hash + s % HASHSIZ; while (p->s) { if (p->s == s) return p->cnt; if (++p == hashend) p = hash; } return 0; } void insert(int s) { HASH *p = hash + s % HASHSIZ; while (p->s) { if (p->s == s) { p->cnt++; return; } if (++p == hashend) p = hash; } p->s = s, p->cnt = 1; } #define MAX 2000 int n2[MAX+5]; int main() { int i, k, N, D, x, y, z, w, ans; for (i = 0; i < MAX; i++) { n2[i+1] = n2[i] + (i<<1) + 1; } N = in(), D = in(); for (x = 1; x <= N; x++) for (y = 1; y <= N; y++) { insert(n2[x] + n2[y]); } ans = 0; for (w = 1; w <= N; w++) { k = D + n2[w]; for (z = 1; z <= N; z++) { if (k - n2[z] > 1) ans += lookup(k - n2[z]); } } printf("%d\n", ans); return 0; }