結果
問題 | No.118 門松列(2) |
ユーザー | tnoda_ |
提出日時 | 2015-01-25 16:08:59 |
言語 | Go (1.22.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 456 bytes |
コンパイル時間 | 11,042 ms |
コンパイル使用メモリ | 233,700 KB |
実行使用メモリ | 10,300 KB |
最終ジャッジ日時 | 2024-10-10 03:06:01 |
合計ジャッジ時間 | 23,354 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
package main import ( "fmt" "sort" ) // Prime Number const P = 1000000007 func main() { var n int fmt.Scan(&n) var z int64 a := make([]int, n) for i := 0; i < n; i++ { fmt.Scan(&a[i]) } sort.Ints(a) for i := 0; i < n; i++ { for j := i + 1; j < n; j++ { if a[i] == a[j] { continue } for k := j + 1; k < n; k++ { if a[j] == a[k] { continue } z += int64(n - k) z %= P break } } } fmt.Println(z) }