結果

問題 No.395 永遠の17歳
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 14:31:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 245 bytes
コンパイル時間 3,288 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-10-05 02:07:22
合計ジャッジ時間 6,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,040 KB
testcase_01 AC 133 ms
54,048 KB
testcase_02 AC 131 ms
54,044 KB
testcase_03 AC 135 ms
53,892 KB
testcase_04 AC 120 ms
54,156 KB
testcase_05 AC 131 ms
53,812 KB
testcase_06 AC 130 ms
54,116 KB
testcase_07 AC 133 ms
53,812 KB
testcase_08 AC 133 ms
54,516 KB
testcase_09 AC 132 ms
54,008 KB
testcase_10 AC 132 ms
53,996 KB
testcase_11 AC 134 ms
53,868 KB
testcase_12 AC 133 ms
53,952 KB
testcase_13 AC 133 ms
53,896 KB
testcase_14 AC 133 ms
53,764 KB
testcase_15 AC 133 ms
53,768 KB
testcase_16 AC 133 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		if (n < 15) {
			System.out.println(-1);
		} else {
			System.out.println(n - 7);
		}
	}
}
0