結果

問題 No.1746 Sqrt Integer Segments
ユーザー tailstails
提出日時 2021-11-18 00:32:28
言語 cLay
(20240714-1)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 8,392 ms
コンパイル使用メモリ 226,212 KB
実行使用メモリ 22,124 KB
最終ジャッジ日時 2024-09-13 09:21:48
合計ジャッジ時間 11,714 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,672 KB
testcase_01 AC 10 ms
9,544 KB
testcase_02 AC 106 ms
17,104 KB
testcase_03 AC 57 ms
13,408 KB
testcase_04 AC 81 ms
15,464 KB
testcase_05 AC 156 ms
21,800 KB
testcase_06 AC 46 ms
14,464 KB
testcase_07 AC 21 ms
12,608 KB
testcase_08 AC 106 ms
16,808 KB
testcase_09 AC 165 ms
20,744 KB
testcase_10 AC 44 ms
12,544 KB
testcase_11 AC 138 ms
20,616 KB
testcase_12 AC 163 ms
22,052 KB
testcase_13 AC 152 ms
22,124 KB
testcase_14 AC 166 ms
20,624 KB
testcase_15 AC 163 ms
20,776 KB
testcase_16 AC 160 ms
20,732 KB
testcase_17 AC 89 ms
16,348 KB
testcase_18 AC 13 ms
10,828 KB
testcase_19 AC 13 ms
11,080 KB
testcase_20 AC 13 ms
10,892 KB
testcase_21 AC 27 ms
10,700 KB
testcase_22 AC 26 ms
10,692 KB
testcase_23 AC 18 ms
11,976 KB
testcase_24 AC 45 ms
11,460 KB
testcase_25 AC 46 ms
11,588 KB
testcase_26 AC 46 ms
11,464 KB
testcase_27 AC 34 ms
11,588 KB
testcase_28 AC 34 ms
12,484 KB
testcase_29 AC 33 ms
11,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define A 0x9e3779b97f4a7c15
#define B 0xbf58476d1ce4e5b9
#define C 0x94d049bb133111eb

static inline
unsigned long splitmix64(unsigned long x) {
	x += A;
	x = (x ^ (x >> 30)) * B;
	x = (x ^ (x >> 27)) * C;
	return x ^ (x >> 31);
}

int f[10000];
int e[10000];

{
	int @n,@a[n];
	ull h=0;
	ll z=0;
	unordered_map<ull,int> m;
	m[0]=1;
	rep(i,n){
		int b=Factor(a[i],f,e);
		rep(j,b){
			if(e[j]&1){
				h^=splitmix64(f[j]);
			}
		}
		z+=m[h]++;
	}
	wt(z);
}
0