結果

問題 No.2074 Product is Square ?
ユーザー tailstails
提出日時 2022-09-16 22:42:00
言語 cLay
(20240714-1)
結果
AC  
実行時間 1,421 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 9,439 ms
コンパイル使用メモリ 227,528 KB
実行使用メモリ 12,248 KB
最終ジャッジ日時 2024-06-01 13:43:51
合計ジャッジ時間 21,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,904 KB
testcase_01 AC 261 ms
9,672 KB
testcase_02 AC 267 ms
9,736 KB
testcase_03 AC 273 ms
9,940 KB
testcase_04 AC 266 ms
12,248 KB
testcase_05 AC 279 ms
10,604 KB
testcase_06 AC 281 ms
9,676 KB
testcase_07 AC 284 ms
11,720 KB
testcase_08 AC 278 ms
9,672 KB
testcase_09 AC 262 ms
9,804 KB
testcase_10 AC 270 ms
10,640 KB
testcase_11 AC 61 ms
10,120 KB
testcase_12 AC 247 ms
9,672 KB
testcase_13 AC 1,390 ms
12,116 KB
testcase_14 AC 143 ms
9,672 KB
testcase_15 AC 61 ms
9,744 KB
testcase_16 AC 266 ms
9,800 KB
testcase_17 AC 1,421 ms
9,800 KB
testcase_18 AC 156 ms
9,676 KB
testcase_19 AC 60 ms
9,676 KB
testcase_20 AC 261 ms
9,800 KB
testcase_21 AC 1,387 ms
9,696 KB
testcase_22 AC 124 ms
11,848 KB
testcase_23 AC 62 ms
9,932 KB
testcase_24 AC 262 ms
9,928 KB
testcase_25 AC 1,364 ms
11,716 KB
testcase_26 AC 147 ms
9,928 KB
testcase_27 AC 61 ms
9,892 KB
testcase_28 AC 294 ms
12,220 KB
testcase_29 AC 1,338 ms
10,700 KB
testcase_30 AC 135 ms
9,676 KB
testcase_31 AC 38 ms
9,800 KB
testcase_32 AC 9 ms
9,800 KB
testcase_33 AC 9 ms
9,672 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