結果

問題 No.1256 連続整数列
ユーザー 遭難者遭難者
提出日時 2020-10-16 23:08:51
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 423 bytes
コンパイル時間 6,905 ms
コンパイル使用メモリ 83,408 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-07-21 01:29:08
合計ジャッジ時間 7,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,456 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 131 ms
41,332 KB
testcase_04 AC 132 ms
41,052 KB
testcase_05 WA -
testcase_06 AC 135 ms
41,300 KB
testcase_07 AC 135 ms
41,136 KB
testcase_08 AC 138 ms
41,308 KB
testcase_09 AC 139 ms
41,168 KB
testcase_10 AC 137 ms
41,416 KB
testcase_11 AC 133 ms
41,228 KB
testcase_12 AC 134 ms
41,384 KB
testcase_13 AC 129 ms
41,124 KB
testcase_14 AC 131 ms
41,240 KB
testcase_15 AC 129 ms
41,280 KB
testcase_16 AC 132 ms
41,192 KB
testcase_17 AC 136 ms
41,508 KB
testcase_18 AC 142 ms
41,312 KB
testcase_19 AC 134 ms
41,440 KB
testcase_20 AC 129 ms
41,456 KB
testcase_21 AC 129 ms
41,032 KB
testcase_22 AC 128 ms
41,264 KB
testcase_23 AC 127 ms
41,464 KB
testcase_24 AC 130 ms
41,104 KB
testcase_25 AC 131 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		int a = Integer.parseInt(sc.next()) - 3;
		boolean s = true;
		for(int i = 3 ; s && a >= 0 ; i++){
			a -= i;
			if(a % i == 0){
				ou.println("YES");
				s = false;
			}
		}
		if(s) ou.println("NO");
		ou.flush();
		sc.close();
	}
}
0