結果

問題 No.1256 連続整数列
ユーザー キョウチクキョウチク
提出日時 2022-05-15 20:50:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 3,726 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-09-13 08:25:59
合計ジャッジ時間 7,822 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,032 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 130 ms
53,800 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 130 ms
54,256 KB
testcase_07 AC 131 ms
54,124 KB
testcase_08 AC 129 ms
53,988 KB
testcase_09 AC 130 ms
53,864 KB
testcase_10 AC 132 ms
54,068 KB
testcase_11 AC 132 ms
54,236 KB
testcase_12 AC 129 ms
54,056 KB
testcase_13 AC 131 ms
54,236 KB
testcase_14 AC 132 ms
53,848 KB
testcase_15 AC 130 ms
54,072 KB
testcase_16 AC 130 ms
53,772 KB
testcase_17 AC 129 ms
54,096 KB
testcase_18 AC 131 ms
53,988 KB
testcase_19 AC 131 ms
54,128 KB
testcase_20 AC 131 ms
54,020 KB
testcase_21 AC 132 ms
54,192 KB
testcase_22 AC 130 ms
53,968 KB
testcase_23 AC 117 ms
52,956 KB
testcase_24 AC 131 ms
54,292 KB
testcase_25 AC 130 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test10 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String line;
    line=sc.nextLine();
    int a=Integer.parseInt(line),n=1+2;
    String result="NO";
    for(int i=3;result.equals("NO");i++){
      n+=i;
      if(a<n){
        break;
      }
      if((a-n)%i==0){
        result="YES";
        break;
      }
    }
    System.out.println(result);
    sc.close();
  }
}
0