結果

問題 No.395 永遠の17歳
ユーザー tentententen
提出日時 2020-09-29 13:18:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 310 bytes
コンパイル時間 2,537 ms
コンパイル使用メモリ 73,740 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-07-03 19:25:53
合計ジャッジ時間 5,312 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,904 KB
testcase_01 AC 114 ms
52,848 KB
testcase_02 AC 113 ms
52,776 KB
testcase_03 AC 128 ms
53,952 KB
testcase_04 AC 131 ms
54,004 KB
testcase_05 AC 129 ms
54,024 KB
testcase_06 AC 126 ms
53,908 KB
testcase_07 AC 126 ms
54,184 KB
testcase_08 AC 126 ms
53,852 KB
testcase_09 AC 127 ms
53,988 KB
testcase_10 AC 129 ms
54,096 KB
testcase_11 AC 124 ms
54,156 KB
testcase_12 AC 130 ms
54,076 KB
testcase_13 AC 126 ms
54,108 KB
testcase_14 AC 128 ms
54,228 KB
testcase_15 AC 126 ms
53,848 KB
testcase_16 AC 128 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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