結果

問題 No.395 永遠の17歳
ユーザー BantakoBantako
提出日時 2017-04-11 15:24:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-18 07:04:58
合計ジャッジ時間 4,791 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,840 KB
testcase_01 AC 121 ms
54,272 KB
testcase_02 WA -
testcase_03 AC 123 ms
54,040 KB
testcase_04 AC 121 ms
54,028 KB
testcase_05 AC 119 ms
53,820 KB
testcase_06 AC 105 ms
52,936 KB
testcase_07 AC 117 ms
54,124 KB
testcase_08 AC 122 ms
53,948 KB
testcase_09 AC 130 ms
53,916 KB
testcase_10 AC 135 ms
54,124 KB
testcase_11 AC 130 ms
54,112 KB
testcase_12 AC 124 ms
54,152 KB
testcase_13 WA -
testcase_14 AC 103 ms
52,792 KB
testcase_15 AC 115 ms
54,036 KB
testcase_16 AC 127 ms
54,076 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