結果

問題 No.2054 Different Sequence
ユーザー viral8viral8
提出日時 2022-10-01 11:02:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-06-06 04:18:46
合計ジャッジ時間 6,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,916 KB
testcase_01 AC 122 ms
53,964 KB
testcase_02 AC 124 ms
53,972 KB
testcase_03 AC 118 ms
54,036 KB
testcase_04 AC 125 ms
54,216 KB
testcase_05 AC 123 ms
54,144 KB
testcase_06 AC 111 ms
52,948 KB
testcase_07 AC 122 ms
53,908 KB
testcase_08 AC 108 ms
52,788 KB
testcase_09 AC 107 ms
53,120 KB
testcase_10 AC 124 ms
54,080 KB
testcase_11 AC 125 ms
53,952 KB
testcase_12 AC 119 ms
54,088 KB
testcase_13 AC 125 ms
53,960 KB
testcase_14 AC 123 ms
53,844 KB
testcase_15 AC 121 ms
53,916 KB
testcase_16 AC 107 ms
52,784 KB
testcase_17 AC 108 ms
52,848 KB
testcase_18 AC 121 ms
54,064 KB
testcase_19 AC 119 ms
53,924 KB
testcase_20 AC 119 ms
53,684 KB
testcase_21 AC 108 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();
        int M = sc.nextInt();
        System.out.println(N*(N+1)/2>M?"No":"Yes");
    }
}
0