結果

問題 No.118 門松列(2)
ユーザー motimoti
提出日時 2018-05-21 22:26:27
言語 Perl
(5.38.2)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 424 bytes
コンパイル時間 37 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-06-28 15:37:04
合計ジャッジ時間 2,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,144 KB
testcase_01 AC 79 ms
14,208 KB
testcase_02 AC 79 ms
13,952 KB
testcase_03 AC 88 ms
13,952 KB
testcase_04 AC 80 ms
14,080 KB
testcase_05 AC 79 ms
14,208 KB
testcase_06 AC 6 ms
5,632 KB
testcase_07 AC 6 ms
5,632 KB
testcase_08 AC 6 ms
5,760 KB
testcase_09 AC 77 ms
13,568 KB
testcase_10 AC 56 ms
7,296 KB
testcase_11 AC 57 ms
7,936 KB
testcase_12 AC 53 ms
6,784 KB
testcase_13 AC 52 ms
6,272 KB
testcase_14 AC 76 ms
13,568 KB
testcase_15 AC 53 ms
5,760 KB
testcase_16 AC 66 ms
10,112 KB
testcase_17 AC 51 ms
6,272 KB
testcase_18 AC 58 ms
7,936 KB
testcase_19 AC 65 ms
9,600 KB
testcase_20 AC 65 ms
9,728 KB
testcase_21 AC 75 ms
12,160 KB
testcase_22 AC 58 ms
7,424 KB
testcase_23 AC 71 ms
11,648 KB
testcase_24 AC 60 ms
8,320 KB
testcase_25 AC 64 ms
9,216 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;

my $n = <>; chomp $n;
my %h;
my @v;
my $s = <>; chomp $s;
for my $x (split / /,$s) {
  if (!exists$h{$x}) {
    push @v, $x;
  }
  $h{$x}++;
}
my $count = 0;
for (my $i = 0; $i < @v; $i++) {
  for (my $j = 0; $j < $i; $j++) {
    for (my $k = 0; $k < $j; $k++) {
      $count += $h{$v[$i]} * $h{$v[$j]} * $h{$v[$k]};
      $count %= 1000000007;
    }
  }
}

print "$count\n";
0