結果

問題 No.395 永遠の17歳
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-11 23:41:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 75,252 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-06-01 06:13:52
合計ジャッジ時間 5,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,196 KB
testcase_01 AC 134 ms
53,976 KB
testcase_02 AC 143 ms
54,084 KB
testcase_03 AC 138 ms
54,256 KB
testcase_04 AC 132 ms
54,064 KB
testcase_05 AC 133 ms
54,292 KB
testcase_06 WA -
testcase_07 AC 133 ms
54,280 KB
testcase_08 AC 132 ms
54,268 KB
testcase_09 WA -
testcase_10 AC 134 ms
53,944 KB
testcase_11 AC 134 ms
54,024 KB
testcase_12 AC 133 ms
54,044 KB
testcase_13 AC 131 ms
53,888 KB
testcase_14 AC 134 ms
54,144 KB
testcase_15 AC 133 ms
54,172 KB
testcase_16 AC 134 ms
53,908 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 = 0;

        if(a < 8) {
            ans = -1;
        } else {
            ans = a - 7;
        }

        System.out.println(ans);

        in.close();
    }
}
0