結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-24 16:33:52
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,906 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 10,854 ms
コンパイル使用メモリ 425,448 KB
実行使用メモリ 97,256 KB
最終ジャッジ日時 2024-11-20 09:49:32
合計ジャッジ時間 19,689 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 426 ms
57,212 KB
testcase_01 AC 559 ms
66,228 KB
testcase_02 AC 525 ms
63,400 KB
testcase_03 AC 658 ms
70,456 KB
testcase_04 AC 301 ms
56,632 KB
testcase_05 AC 303 ms
56,916 KB
testcase_06 AC 307 ms
56,716 KB
testcase_07 AC 334 ms
56,728 KB
testcase_08 AC 380 ms
56,968 KB
testcase_09 AC 598 ms
68,516 KB
testcase_10 AC 1,906 ms
97,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
  val a = readLine()!!.toInt()

  (1..(a/3).toInt() ).map { n ->
    val nr = a - n
    (n..(nr/2).toInt() ).map { m ->
       println("$n $m ${a - n -m}")
    }
  }
}
0