結果

問題 No.395 永遠の17歳
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-21 00:42:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 226 bytes
コンパイル時間 3,215 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-06-28 14:51:35
合計ジャッジ時間 6,234 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,992 KB
testcase_01 AC 131 ms
54,188 KB
testcase_02 AC 130 ms
54,004 KB
testcase_03 AC 129 ms
54,104 KB
testcase_04 AC 129 ms
53,868 KB
testcase_05 AC 130 ms
53,908 KB
testcase_06 AC 131 ms
54,128 KB
testcase_07 AC 131 ms
53,984 KB
testcase_08 AC 134 ms
54,184 KB
testcase_09 AC 131 ms
54,120 KB
testcase_10 AC 116 ms
52,940 KB
testcase_11 AC 128 ms
53,948 KB
testcase_12 AC 130 ms
53,700 KB
testcase_13 AC 130 ms
54,492 KB
testcase_14 AC 129 ms
54,004 KB
testcase_15 AC 128 ms
53,860 KB
testcase_16 AC 130 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

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