結果

問題 No.2074 Product is Square ?
ユーザー tailstails
提出日時 2022-09-16 22:42:00
言語 cLay
(20240714-1)
結果
AC  
実行時間 1,303 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 8,358 ms
コンパイル使用メモリ 225,788 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-12-21 22:00:58
合計ジャッジ時間 19,585 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
8,448 KB
testcase_01 AC 243 ms
8,320 KB
testcase_02 AC 252 ms
8,576 KB
testcase_03 AC 252 ms
8,576 KB
testcase_04 AC 235 ms
8,576 KB
testcase_05 AC 257 ms
8,576 KB
testcase_06 AC 244 ms
8,576 KB
testcase_07 AC 270 ms
8,576 KB
testcase_08 AC 247 ms
8,576 KB
testcase_09 AC 230 ms
8,448 KB
testcase_10 AC 226 ms
8,576 KB
testcase_11 AC 57 ms
8,576 KB
testcase_12 AC 223 ms
8,576 KB
testcase_13 AC 1,229 ms
8,576 KB
testcase_14 AC 118 ms
8,576 KB
testcase_15 AC 55 ms
8,576 KB
testcase_16 AC 232 ms
8,704 KB
testcase_17 AC 1,233 ms
8,576 KB
testcase_18 AC 145 ms
8,576 KB
testcase_19 AC 56 ms
8,576 KB
testcase_20 AC 227 ms
8,576 KB
testcase_21 AC 1,232 ms
8,448 KB
testcase_22 AC 115 ms
8,576 KB
testcase_23 AC 59 ms
8,576 KB
testcase_24 AC 238 ms
8,448 KB
testcase_25 AC 1,202 ms
8,576 KB
testcase_26 AC 140 ms
8,576 KB
testcase_27 AC 56 ms
8,576 KB
testcase_28 AC 260 ms
8,576 KB
testcase_29 AC 1,303 ms
8,576 KB
testcase_30 AC 133 ms
8,448 KB
testcase_31 AC 32 ms
8,448 KB
testcase_32 AC 9 ms
8,448 KB
testcase_33 AC 10 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@t;
rep(t){
	set<ll>s;
	ll@n;
	rep(n){
		ll@a,f[64],e[64];
		REP(i,Factor(a,f,e)){
			if(e[i]&1){
				auto x=s.insert(f[i]);
				if(!x.second){
					s.erase(x.first);
				}
			}
		}
	}
	wt(s.empty()?"Yes":"No");
}
0