結果

問題 No.395 永遠の17歳
ユーザー fal_rndfal_rnd
提出日時 2016-10-31 16:29:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 1,000 ms
コード長 239 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-10-05 02:32:03
合計ジャッジ時間 4,507 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,304 KB
testcase_01 AC 90 ms
41,320 KB
testcase_02 AC 110 ms
41,264 KB
testcase_03 AC 108 ms
41,412 KB
testcase_04 AC 108 ms
41,148 KB
testcase_05 AC 106 ms
41,088 KB
testcase_06 AC 109 ms
41,272 KB
testcase_07 AC 104 ms
41,560 KB
testcase_08 AC 104 ms
41,532 KB
testcase_09 AC 104 ms
41,140 KB
testcase_10 AC 105 ms
41,300 KB
testcase_11 AC 105 ms
41,204 KB
testcase_12 AC 114 ms
41,248 KB
testcase_13 AC 110 ms
41,028 KB
testcase_14 AC 107 ms
41,092 KB
testcase_15 AC 98 ms
40,964 KB
testcase_16 AC 108 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A {
	static Scanner s = new Scanner(System.in);

	public static void main(String[] args) {
		int i = Integer.parseInt(s.next());
		if(i<15){
			System.out.println(-1);
		}else{
			System.out.println(i-7);
		}
	}
}
0