結果

問題 No.395 永遠の17歳
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 02:33:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 1,000 ms
コード長 307 bytes
コンパイル時間 1,800 ms
コンパイル使用メモリ 73,764 KB
実行使用メモリ 54,012 KB
最終ジャッジ日時 2024-10-05 02:33:26
合計ジャッジ時間 4,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
52,744 KB
testcase_01 AC 114 ms
54,012 KB
testcase_02 AC 103 ms
52,784 KB
testcase_03 AC 109 ms
53,884 KB
testcase_04 AC 101 ms
52,924 KB
testcase_05 AC 113 ms
53,852 KB
testcase_06 AC 114 ms
53,680 KB
testcase_07 AC 100 ms
52,788 KB
testcase_08 AC 113 ms
53,656 KB
testcase_09 AC 104 ms
52,740 KB
testcase_10 AC 105 ms
52,912 KB
testcase_11 AC 105 ms
53,020 KB
testcase_12 AC 106 ms
52,688 KB
testcase_13 AC 110 ms
54,000 KB
testcase_14 AC 102 ms
52,772 KB
testcase_15 AC 108 ms
53,568 KB
testcase_16 AC 114 ms
53,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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