結果

問題 No.1089 三変数方程式
ユーザー yumechiyumechi
提出日時 2021-03-01 23:44:53
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,082 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 9,319 ms
コンパイル使用メモリ 266,792 KB
実行使用メモリ 65,404 KB
最終ジャッジ日時 2024-10-03 01:12:07
合計ジャッジ時間 28,549 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,001 ms
65,124 KB
testcase_01 AC 981 ms
65,336 KB
testcase_02 AC 1,014 ms
65,072 KB
testcase_03 AC 1,056 ms
65,236 KB
testcase_04 AC 1,025 ms
65,224 KB
testcase_05 AC 1,070 ms
65,320 KB
testcase_06 AC 1,032 ms
65,260 KB
testcase_07 AC 1,009 ms
64,956 KB
testcase_08 AC 1,082 ms
65,228 KB
testcase_09 AC 1,000 ms
65,404 KB
testcase_10 AC 1,053 ms
65,196 KB
testcase_11 AC 1,041 ms
65,220 KB
testcase_12 AC 1,050 ms
65,004 KB
testcase_13 AC 1,039 ms
65,356 KB
testcase_14 AC 1,064 ms
65,320 KB
testcase_15 AC 1,080 ms
65,240 KB
testcase_16 AC 1,050 ms
65,300 KB
権限があれば一括ダウンロードができます

ソースコード

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)) {
      val k = n - (i + j)
      if(i + j + k == n) {
        ans += 1
      }
    }
  }
  println(ans)
}
0