結果

問題 No.395 永遠の17歳
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-21 19:33:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 205 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 73,840 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-09-19 00:18:01
合計ジャッジ時間 4,977 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,044 KB
testcase_01 AC 97 ms
40,328 KB
testcase_02 AC 105 ms
40,220 KB
testcase_03 AC 97 ms
40,232 KB
testcase_04 AC 113 ms
41,008 KB
testcase_05 AC 114 ms
40,944 KB
testcase_06 AC 104 ms
41,192 KB
testcase_07 AC 107 ms
41,336 KB
testcase_08 AC 114 ms
41,420 KB
testcase_09 AC 118 ms
41,136 KB
testcase_10 AC 114 ms
41,308 KB
testcase_11 AC 117 ms
41,220 KB
testcase_12 AC 122 ms
41,352 KB
testcase_13 AC 112 ms
40,232 KB
testcase_14 AC 119 ms
41,320 KB
testcase_15 AC 95 ms
40,060 KB
testcase_16 AC 108 ms
41,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int x = n - 7;
		System.out.println(x<8?-1:x);
	}
}
0