結果

問題 No.395 永遠の17歳
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 20:55:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 191 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-10-05 02:35:13
合計ジャッジ時間 4,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,940 KB
testcase_01 AC 101 ms
52,796 KB
testcase_02 AC 118 ms
53,804 KB
testcase_03 AC 120 ms
53,852 KB
testcase_04 AC 114 ms
53,748 KB
testcase_05 AC 116 ms
53,972 KB
testcase_06 AC 116 ms
54,028 KB
testcase_07 AC 115 ms
54,040 KB
testcase_08 AC 116 ms
54,064 KB
testcase_09 AC 119 ms
53,760 KB
testcase_10 AC 118 ms
54,300 KB
testcase_11 AC 109 ms
54,108 KB
testcase_12 AC 116 ms
53,912 KB
testcase_13 AC 111 ms
53,992 KB
testcase_14 AC 101 ms
54,504 KB
testcase_15 AC 113 ms
54,076 KB
testcase_16 AC 112 ms
53,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y395 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a=sc.nextInt();
		System.out.println(a<15?-1:(a-7));
		sc.close();
	}
}
0