結果

問題 No.1593 Perfect Distance
ユーザー fukafukatanifukafukatani
提出日時 2021-07-13 22:34:34
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,179 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 10,466 ms
コンパイル使用メモリ 275,624 KB
実行使用メモリ 83,640 KB
最終ジャッジ日時 2024-07-02 17:54:05
合計ジャッジ時間 30,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 907 ms
66,032 KB
testcase_01 AC 885 ms
66,116 KB
testcase_02 AC 906 ms
66,036 KB
testcase_03 AC 897 ms
66,092 KB
testcase_04 AC 920 ms
66,252 KB
testcase_05 AC 908 ms
66,172 KB
testcase_06 AC 882 ms
66,176 KB
testcase_07 AC 912 ms
66,440 KB
testcase_08 AC 931 ms
66,320 KB
testcase_09 AC 981 ms
66,500 KB
testcase_10 AC 979 ms
67,284 KB
testcase_11 AC 980 ms
68,736 KB
testcase_12 AC 1,024 ms
71,316 KB
testcase_13 AC 1,055 ms
71,964 KB
testcase_14 AC 1,103 ms
73,132 KB
testcase_15 AC 1,120 ms
77,884 KB
testcase_16 AC 1,179 ms
83,640 KB
testcase_17 AC 883 ms
66,308 KB
testcase_18 AC 904 ms
66,004 KB
testcase_19 AC 927 ms
66,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
  val sc = new java.util.Scanner(System.in)
  val n = sc.nextLong
  val s = (1l to n).map(p => p * p).toSet
  val ans = (1l to n).count(p => s.contains(n * n - p * p))
  println(ans)
}
0