結果

問題 No.1256 連続整数列
ユーザー 遭難者遭難者
提出日時 2020-10-19 09:26:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 41,308 KB
最終ジャッジ日時 2024-07-21 07:48:21
合計ジャッジ時間 5,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,744 KB
testcase_01 AC 103 ms
41,100 KB
testcase_02 AC 108 ms
41,084 KB
testcase_03 AC 109 ms
40,960 KB
testcase_04 AC 94 ms
39,980 KB
testcase_05 AC 106 ms
40,952 KB
testcase_06 AC 91 ms
39,640 KB
testcase_07 AC 93 ms
39,804 KB
testcase_08 AC 104 ms
40,740 KB
testcase_09 AC 97 ms
40,052 KB
testcase_10 AC 100 ms
39,808 KB
testcase_11 AC 113 ms
40,812 KB
testcase_12 AC 103 ms
41,056 KB
testcase_13 AC 99 ms
39,812 KB
testcase_14 AC 95 ms
39,888 KB
testcase_15 AC 105 ms
41,112 KB
testcase_16 AC 104 ms
41,008 KB
testcase_17 AC 96 ms
39,852 KB
testcase_18 AC 110 ms
40,984 KB
testcase_19 AC 112 ms
41,064 KB
testcase_20 AC 109 ms
41,284 KB
testcase_21 AC 99 ms
39,964 KB
testcase_22 AC 114 ms
41,308 KB
testcase_23 AC 109 ms
40,996 KB
testcase_24 AC 109 ms
41,088 KB
testcase_25 AC 105 ms
39,940 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 s = Integer.parseInt(sc.next());
		if(s == 1) ou.println("NO");
		else ou.println("YES");
		ou.flush();
		sc.close();
	}
}
0