結果

問題 No.1232 2^x = x
ユーザー yudedakoyudedako
提出日時 2022-01-26 22:08:09
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 976 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 11,268 ms
コンパイル使用メモリ 250,620 KB
実行使用メモリ 63,492 KB
最終ジャッジ日時 2024-06-06 05:34:04
合計ジャッジ時間 16,388 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 801 ms
60,904 KB
testcase_01 AC 875 ms
63,240 KB
testcase_02 AC 976 ms
63,492 KB
testcase_03 AC 894 ms
63,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.io.StdIn.*
import scala.math.*

@main def main =
  val n = readLine().toInt
  val prime = Array.fill(n){readLine().toInt}
  for p <- prime do
    if p == 2 then
      println(2)
    else
      println((p - 1L) * (p - 1L))
0