結果

問題 No.648  お や す み 
ユーザー keidenkeiden
提出日時 2024-09-20 19:42:46
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 246 bytes
コンパイル時間 14,353 ms
コンパイル使用メモリ 248,028 KB
実行使用メモリ 62,600 KB
最終ジャッジ日時 2024-09-20 19:44:31
合計ジャッジ時間 77,089 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 791 ms
62,528 KB
testcase_01 AC 830 ms
62,348 KB
testcase_02 AC 821 ms
62,388 KB
testcase_03 AC 833 ms
62,336 KB
testcase_04 AC 831 ms
62,400 KB
testcase_05 AC 826 ms
62,304 KB
testcase_06 AC 794 ms
62,236 KB
testcase_07 AC 833 ms
62,600 KB
testcase_08 AC 829 ms
62,132 KB
testcase_09 AC 793 ms
62,080 KB
testcase_10 AC 842 ms
62,156 KB
testcase_11 AC 810 ms
62,320 KB
testcase_12 AC 782 ms
62,304 KB
testcase_13 AC 827 ms
62,408 KB
testcase_14 AC 826 ms
62,360 KB
testcase_15 AC 808 ms
62,412 KB
testcase_16 AC 847 ms
62,472 KB
testcase_17 AC 843 ms
62,424 KB
testcase_18 AC 803 ms
62,420 KB
testcase_19 AC 821 ms
62,276 KB
testcase_20 AC 839 ms
62,192 KB
testcase_21 AC 816 ms
62,392 KB
testcase_22 AC 816 ms
62,328 KB
testcase_23 AC 818 ms
62,120 KB
testcase_24 AC 819 ms
62,348 KB
testcase_25 AC 824 ms
62,448 KB
testcase_26 AC 828 ms
62,216 KB
testcase_27 AC 794 ms
62,240 KB
testcase_28 AC 834 ms
62,380 KB
testcase_29 AC 816 ms
62,208 KB
testcase_30 AC 785 ms
62,316 KB
testcase_31 AC 815 ms
62,360 KB
testcase_32 AC 789 ms
62,212 KB
testcase_33 AC 799 ms
62,228 KB
testcase_34 AC 808 ms
62,136 KB
testcase_35 AC 787 ms
62,416 KB
testcase_36 AC 824 ms
62,496 KB
testcase_37 AC 779 ms
62,344 KB
testcase_38 AC 833 ms
62,376 KB
testcase_39 AC 799 ms
62,240 KB
testcase_40 AC 792 ms
62,340 KB
testcase_41 AC 797 ms
62,156 KB
testcase_42 AC 813 ms
62,344 KB
testcase_43 AC 824 ms
62,364 KB
testcase_44 AC 803 ms
62,380 KB
testcase_45 AC 820 ms
62,440 KB
testcase_46 AC 791 ms
62,300 KB
testcase_47 AC 822 ms
62,424 KB
testcase_48 AC 809 ms
62,412 KB
testcase_49 AC 805 ms
62,380 KB
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 RE -
testcase_74 RE -
testcase_75 RE -
testcase_76 RE -
testcase_77 RE -
testcase_78 RE -
testcase_79 RE -
testcase_80 RE -
testcase_81 RE -
testcase_82 AC 807 ms
62,480 KB
testcase_83 AC 822 ms
62,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readInt
import scala.math._

@main
def yuki648(): Unit =
    val n = 2 * readInt
    val k = round(sqrt(n.toDouble)).toInt
    if n == k * (k + 1) then
        println("YES")
        println(k)
    else
        println("NO")
0