結果

問題 No.1239 Multiplication -2
ユーザー tailstails
提出日時 2020-09-28 18:40:24
言語 cLay
(20240714-1)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 2,535 ms
コンパイル使用メモリ 173,872 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 14:17:18
合計ジャッジ時間 6,092 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 40 ms
5,376 KB
testcase_16 AC 65 ms
5,376 KB
testcase_17 AC 123 ms
5,376 KB
testcase_18 AC 123 ms
5,376 KB
testcase_19 AC 120 ms
5,376 KB
testcase_20 AC 122 ms
5,376 KB
testcase_21 AC 117 ms
5,376 KB
testcase_22 AC 114 ms
5,376 KB
testcase_23 AC 87 ms
5,376 KB
testcase_24 AC 83 ms
5,376 KB
testcase_25 AC 70 ms
5,376 KB
testcase_26 AC 76 ms
5,376 KB
testcase_27 AC 34 ms
5,376 KB
testcase_28 AC 105 ms
5,376 KB
testcase_29 AC 114 ms
5,376 KB
testcase_30 AC 49 ms
5,376 KB
testcase_31 AC 73 ms
5,376 KB
testcase_32 AC 124 ms
5,376 KB
testcase_33 AC 86 ms
5,376 KB
testcase_34 AC 79 ms
5,376 KB
testcase_35 AC 39 ms
5,376 KB
testcase_36 AC 36 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
Mint b,c,d,e,z;
{
	int n,a;
	rd(n);
	b=1;
	rep(n){
		rd(a);
		b=b+1;
		(b,c,d,e)/=2;
		if(!a)(b,c,d,e)=0;
		if(a<0)(b,c,d,e)=(c,b,e,d);
		if(a*a>3)(b,c,d,e)=(0,0,b,c);
		z+=e;
	}
	z+=e;
	wt(z/2);
}
0