結果

問題 No.1089 三変数方程式
ユーザー yumechiyumechi
提出日時 2021-03-01 23:52:53
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,089 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 8,944 ms
コンパイル使用メモリ 266,940 KB
実行使用メモリ 65,296 KB
最終ジャッジ日時 2024-10-03 01:12:49
合計ジャッジ時間 28,169 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 926 ms
63,500 KB
testcase_01 AC 962 ms
63,644 KB
testcase_02 AC 998 ms
64,228 KB
testcase_03 AC 1,062 ms
64,368 KB
testcase_04 AC 1,009 ms
64,336 KB
testcase_05 AC 1,089 ms
64,508 KB
testcase_06 AC 1,013 ms
65,296 KB
testcase_07 AC 1,028 ms
64,132 KB
testcase_08 AC 1,064 ms
64,292 KB
testcase_09 AC 1,009 ms
64,440 KB
testcase_10 AC 1,053 ms
64,308 KB
testcase_11 AC 1,017 ms
64,332 KB
testcase_12 AC 1,043 ms
64,208 KB
testcase_13 AC 1,017 ms
64,472 KB
testcase_14 AC 1,055 ms
64,480 KB
testcase_15 AC 1,058 ms
64,260 KB
testcase_16 AC 1,045 ms
64,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val n = sc.nextInt
  println((0 to n).toList.map(i => (0 to (n - i)).toList.count(j => n - i - j >= 0)).sum)
}
0