結果

問題 No.118 門松列(2)
ユーザー %20%20
提出日時 2017-09-20 18:26:27
言語 Perl
(5.38.2)
結果
AC  
実行時間 199 ms / 5,000 ms
コード長 134 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 6,016 KB
実行使用メモリ 33,792 KB
最終ジャッジ日時 2024-11-08 09:10:38
合計ジャッジ時間 3,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
7,552 KB
testcase_01 AC 199 ms
33,792 KB
testcase_02 AC 184 ms
32,896 KB
testcase_03 AC 190 ms
33,280 KB
testcase_04 AC 189 ms
33,792 KB
testcase_05 AC 190 ms
33,664 KB
testcase_06 AC 41 ms
6,016 KB
testcase_07 AC 40 ms
6,016 KB
testcase_08 AC 40 ms
6,016 KB
testcase_09 AC 180 ms
32,000 KB
testcase_10 AC 61 ms
11,264 KB
testcase_11 AC 72 ms
13,184 KB
testcase_12 AC 52 ms
9,856 KB
testcase_13 AC 42 ms
8,192 KB
testcase_14 AC 176 ms
31,488 KB
testcase_15 AC 32 ms
6,528 KB
testcase_16 AC 113 ms
20,224 KB
testcase_17 AC 40 ms
7,936 KB
testcase_18 AC 71 ms
13,312 KB
testcase_19 AC 100 ms
18,304 KB
testcase_20 AC 104 ms
19,072 KB
testcase_21 AC 155 ms
27,136 KB
testcase_22 AC 62 ms
11,520 KB
testcase_23 AC 139 ms
25,088 KB
testcase_24 AC 76 ms
14,080 KB
testcase_25 AC 97 ms
17,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::A" used only once: possible typo at Main.pl line 2.
Main.pl syntax OK

ソースコード

diff #

<>;
++$_[$_]for@A=glob<>;
for$i(1..100){
	for$j($i+1..100){
		for$k($j+1..100){
			($x+=$_[$i]*$_[$j]*$_[$k])%=1e9+7
		}
	}
}
print$x
0