結果

問題 No.395 永遠の17歳
ユーザー BantakoBantako
提出日時 2017-04-11 15:32:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-07-18 07:05:03
合計ジャッジ時間 5,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,472 KB
testcase_01 AC 119 ms
40,204 KB
testcase_02 WA -
testcase_03 AC 127 ms
41,868 KB
testcase_04 AC 118 ms
41,356 KB
testcase_05 AC 129 ms
41,536 KB
testcase_06 AC 131 ms
41,128 KB
testcase_07 AC 129 ms
41,456 KB
testcase_08 AC 130 ms
41,632 KB
testcase_09 AC 131 ms
41,304 KB
testcase_10 AC 131 ms
41,196 KB
testcase_11 AC 119 ms
40,336 KB
testcase_12 AC 130 ms
41,740 KB
testcase_13 WA -
testcase_14 AC 130 ms
41,436 KB
testcase_15 AC 129 ms
41,308 KB
testcase_16 AC 117 ms
40,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
class Test02{
	public static void main(String args[])throws IOException{
		Scanner	scan = new Scanner(System.in);
		int num = scan.nextInt();
		if(num < 17){
			System.out.println("-1");
		}else{
			System.out.println(num - 7);
		}
	}
}
0