結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | tatt61880 |
提出日時 | 2021-03-30 02:11:59 |
言語 | Kuin (KuinC++ v.2021.9.17) |
結果 |
TLE
|
実行時間 | - |
コード長 | 506 bytes |
コンパイル時間 | 2,283 ms |
コンパイル使用メモリ | 147,284 KB |
実行使用メモリ | 39,888 KB |
最終ジャッジ日時 | 2024-09-16 12:18:26 |
合計ジャッジ時間 | 8,839 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
func main() var n: int :: cui@inputInt() var a: []int :: #[n]int for i(0, n - 1) do a[i] :: cui@inputInt() end for var u: []int :: #[0]int var v: []int :: #[0]int var minIdx: int :: 0 for target(1, 100) for i(minIdx, n - 1) if(a[i] = target) if(i <> minIdx) do u :~ [minIdx] do v :~ [i] end if do minIdx :+ 1 end if end for end for do cui@print("\{^u}\n") for i(0, ^u - 1) do cui@print("\{u[i]} \{v[i]}\n") end for do cui@input() do cui@flush() end func