結果

問題 No.192 合成数
ユーザー DemocoDemoco
提出日時 2015-05-02 02:27:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 1,935 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-06-27 01:35:24
合計ジャッジ時間 6,497 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,116 KB
testcase_01 AC 126 ms
41,004 KB
testcase_02 AC 126 ms
41,292 KB
testcase_03 AC 126 ms
40,788 KB
testcase_04 AC 125 ms
41,156 KB
testcase_05 AC 126 ms
40,960 KB
testcase_06 AC 127 ms
41,036 KB
testcase_07 AC 126 ms
41,012 KB
testcase_08 AC 113 ms
39,764 KB
testcase_09 AC 126 ms
41,312 KB
testcase_10 AC 126 ms
41,128 KB
testcase_11 AC 124 ms
41,488 KB
testcase_12 AC 115 ms
40,304 KB
testcase_13 AC 114 ms
40,212 KB
testcase_14 AC 126 ms
41,192 KB
testcase_15 AC 113 ms
40,020 KB
testcase_16 AC 128 ms
41,044 KB
testcase_17 AC 113 ms
39,752 KB
testcase_18 AC 126 ms
41,332 KB
testcase_19 AC 119 ms
40,396 KB
testcase_20 AC 127 ms
40,992 KB
testcase_21 AC 126 ms
41,080 KB
testcase_22 AC 128 ms
40,988 KB
testcase_23 AC 113 ms
39,900 KB
testcase_24 AC 127 ms
41,092 KB
testcase_25 AC 124 ms
41,000 KB
testcase_26 AC 125 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Yukico192 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		int n = stdIn.nextInt();
		if(n%2==0) {
			System.out.println(n);
		}
		else {
			System.out.println(n-1);
		}
	}
}
0