結果

問題 No.118 門松列(2)
ユーザー tailstails
提出日時 2019-08-27 15:18:57
言語 Bash
(Bash 5.1.16)
結果
AC  
実行時間 1,213 ms / 5,000 ms
コード長 132 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 12,972 KB
最終ジャッジ日時 2024-11-17 02:04:11
合計ジャッジ時間 28,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 820 ms
6,820 KB
testcase_01 AC 1,213 ms
12,972 KB
testcase_02 AC 1,195 ms
12,564 KB
testcase_03 AC 1,168 ms
12,836 KB
testcase_04 AC 1,164 ms
12,968 KB
testcase_05 AC 1,205 ms
12,840 KB
testcase_06 AC 811 ms
6,820 KB
testcase_07 AC 794 ms
6,816 KB
testcase_08 AC 818 ms
6,816 KB
testcase_09 AC 1,125 ms
12,292 KB
testcase_10 AC 935 ms
6,816 KB
testcase_11 AC 974 ms
6,816 KB
testcase_12 AC 920 ms
6,820 KB
testcase_13 AC 956 ms
6,816 KB
testcase_14 AC 1,149 ms
12,156 KB
testcase_15 AC 906 ms
6,820 KB
testcase_16 AC 1,033 ms
8,320 KB
testcase_17 AC 906 ms
6,816 KB
testcase_18 AC 952 ms
6,820 KB
testcase_19 AC 1,006 ms
7,680 KB
testcase_20 AC 1,013 ms
7,808 KB
testcase_21 AC 1,090 ms
10,528 KB
testcase_22 AC 962 ms
6,820 KB
testcase_23 AC 1,085 ms
9,856 KB
testcase_24 AC 959 ms
6,816 KB
testcase_25 AC 1,016 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

read
$_ a
for a in $a
{((++b[a]))
}
for((i=101;--i;)){
for((j=i;--j;)){
for((k=j;--k;s+=b[i]*b[j]*b[k])){
:
}
}
}
echo $[s%=10**9+7]
0