結果

問題 No.1831 Parasol
ユーザー yudedakoyudedako
提出日時 2022-02-18 10:51:06
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,049 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 7,843 ms
コンパイル使用メモリ 285,692 KB
実行使用メモリ 74,132 KB
最終ジャッジ日時 2024-06-29 08:00:52
合計ジャッジ時間 28,017 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 797 ms
63,504 KB
testcase_01 AC 1,047 ms
73,828 KB
testcase_02 AC 837 ms
63,524 KB
testcase_03 AC 810 ms
63,504 KB
testcase_04 AC 1,032 ms
73,920 KB
testcase_05 AC 842 ms
63,168 KB
testcase_06 AC 816 ms
63,400 KB
testcase_07 AC 1,049 ms
73,692 KB
testcase_08 AC 816 ms
63,456 KB
testcase_09 AC 818 ms
63,528 KB
testcase_10 AC 979 ms
68,840 KB
testcase_11 AC 1,049 ms
74,132 KB
testcase_12 AC 969 ms
66,856 KB
testcase_13 AC 1,031 ms
73,612 KB
testcase_14 AC 864 ms
63,400 KB
testcase_15 AC 902 ms
63,864 KB
testcase_16 AC 832 ms
63,560 KB
testcase_17 AC 945 ms
63,620 KB
testcase_18 AC 865 ms
63,912 KB
testcase_19 AC 794 ms
63,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable
import scala.collection.mutable.ArrayBuffer
import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*
import scala.util._


@main def main =
  val n = readLine.toInt
  val result = ArrayBuffer[List[Int]]()
  result.addOne((n until 2 * n).toList.reverse)
  result.addOne((n until 2 * n).toList.reverse)
  for i <- 0 until n - 1 do
    var list = List(n - 1)
    for j <- 0 until n do
      if i != j then
        list ::= n + j
    result.addOne(list)
  for i <- 1 to n - 2 do
    var list = Nil: List[Int]
    for j <- n - 1 - i until n - 1 do
      list ::= j
    for j <- 2 * n - (n - i) until 2 * n  do
      list ::= j
    result.addOne(list)
  println(result.size)
  println(result.map(_.mkString(" ")).mkString("\n"))
0