結果

問題 No.1089 三変数方程式
ユーザー yumechiyumechi
提出日時 2021-03-01 23:41:47
言語 Scala(Beta)
(3.4.0)
結果
TLE  
実行時間 -
コード長 277 bytes
コンパイル時間 8,977 ms
コンパイル使用メモリ 254,732 KB
実行使用メモリ 69,348 KB
最終ジャッジ日時 2024-10-03 01:11:01
合計ジャッジ時間 16,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 884 ms
69,312 KB
testcase_01 AC 907 ms
63,852 KB
testcase_02 AC 976 ms
63,912 KB
testcase_03 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

  val n = sc.nextInt
  var ans = 0
  for(i <- 0 to n) {
    for(j <- 0 to (n - i)) {
      for(k <- 0 to (n - i -j)) {
        if (i + j + k == n) ans += 1
      }
    }
  }
  println(ans)
}
0