結果

問題 No.395 永遠の17歳
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-11 23:51:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 385 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 75,216 KB
実行使用メモリ 54,128 KB
最終ジャッジ日時 2024-10-05 02:46:26
合計ジャッジ時間 4,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,920 KB
testcase_01 AC 123 ms
54,020 KB
testcase_02 AC 102 ms
52,680 KB
testcase_03 AC 119 ms
53,904 KB
testcase_04 AC 106 ms
53,108 KB
testcase_05 AC 109 ms
53,436 KB
testcase_06 AC 114 ms
53,908 KB
testcase_07 AC 109 ms
53,320 KB
testcase_08 AC 117 ms
53,784 KB
testcase_09 AC 120 ms
54,092 KB
testcase_10 AC 120 ms
53,672 KB
testcase_11 AC 109 ms
52,668 KB
testcase_12 AC 119 ms
53,892 KB
testcase_13 AC 107 ms
53,052 KB
testcase_14 AC 117 ms
54,068 KB
testcase_15 AC 117 ms
53,912 KB
testcase_16 AC 121 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int a = in.nextInt();

        int ans = -1;

        if(a > 14) {
            ans = a - 7;
        }

        System.out.println(ans);

        in.close();
    }
}
0