結果

問題 No.648  お や す み 
ユーザー Freed_0929Freed_0929
提出日時 2018-02-10 00:04:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 717 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 76,204 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-10-09 06:49:30
合計ジャッジ時間 15,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,668 KB
testcase_01 AC 127 ms
41,640 KB
testcase_02 AC 141 ms
41,520 KB
testcase_03 AC 127 ms
41,088 KB
testcase_04 AC 126 ms
41,132 KB
testcase_05 AC 141 ms
41,684 KB
testcase_06 AC 128 ms
41,204 KB
testcase_07 AC 126 ms
41,328 KB
testcase_08 AC 127 ms
41,008 KB
testcase_09 AC 132 ms
40,720 KB
testcase_10 AC 126 ms
41,508 KB
testcase_11 AC 113 ms
39,852 KB
testcase_12 AC 127 ms
41,252 KB
testcase_13 AC 126 ms
41,420 KB
testcase_14 AC 122 ms
41,144 KB
testcase_15 AC 125 ms
41,556 KB
testcase_16 AC 122 ms
41,116 KB
testcase_17 AC 126 ms
41,272 KB
testcase_18 AC 124 ms
41,100 KB
testcase_19 AC 126 ms
41,328 KB
testcase_20 AC 141 ms
41,592 KB
testcase_21 AC 128 ms
40,412 KB
testcase_22 AC 147 ms
41,676 KB
testcase_23 AC 140 ms
41,404 KB
testcase_24 AC 141 ms
41,684 KB
testcase_25 AC 132 ms
41,148 KB
testcase_26 AC 139 ms
41,256 KB
testcase_27 AC 140 ms
41,408 KB
testcase_28 AC 126 ms
40,512 KB
testcase_29 AC 134 ms
40,992 KB
testcase_30 AC 128 ms
41,352 KB
testcase_31 AC 124 ms
41,280 KB
testcase_32 AC 125 ms
41,408 KB
testcase_33 AC 124 ms
41,352 KB
testcase_34 AC 126 ms
41,168 KB
testcase_35 AC 126 ms
41,404 KB
testcase_36 AC 126 ms
41,664 KB
testcase_37 AC 125 ms
41,416 KB
testcase_38 AC 124 ms
41,144 KB
testcase_39 AC 111 ms
39,852 KB
testcase_40 AC 128 ms
41,496 KB
testcase_41 AC 127 ms
41,292 KB
testcase_42 AC 126 ms
41,196 KB
testcase_43 AC 124 ms
41,284 KB
testcase_44 AC 132 ms
41,556 KB
testcase_45 AC 128 ms
41,288 KB
testcase_46 AC 125 ms
41,412 KB
testcase_47 AC 126 ms
41,220 KB
testcase_48 AC 112 ms
40,000 KB
testcase_49 AC 115 ms
40,804 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 118 ms
41,156 KB
testcase_61 AC 112 ms
40,272 KB
testcase_62 AC 132 ms
41,140 KB
testcase_63 AC 122 ms
41,188 KB
testcase_64 AC 122 ms
40,972 KB
testcase_65 AC 112 ms
40,016 KB
testcase_66 AC 124 ms
40,984 KB
testcase_67 AC 111 ms
40,252 KB
testcase_68 AC 111 ms
40,064 KB
testcase_69 AC 125 ms
41,408 KB
testcase_70 AC 124 ms
41,344 KB
testcase_71 AC 125 ms
41,516 KB
testcase_72 AC 122 ms
40,916 KB
testcase_73 AC 113 ms
39,872 KB
testcase_74 AC 124 ms
41,288 KB
testcase_75 AC 113 ms
40,204 KB
testcase_76 AC 125 ms
41,416 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 AC 138 ms
41,392 KB
testcase_83 AC 139 ms
41,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();
        long ch = 0;
        boolean c = true;
        if (N >= 2000000000) {
            c = false;
        } else {
            for (long i = 0;; i++) {
                ch += i;
                if (ch == N) {
                    ch = i;
                    break;
                } else if (ch > N) {
                    c = false;
                    break;
                }
            }
        }
        if (c == true) {
            System.out.println("YES\n" + ch);
        } else {
            System.out.println("NO");
        }
    }
}
0