結果

問題 No.395 永遠の17歳
ユーザー tsunabittsunabit
提出日時 2019-06-02 14:41:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 419 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-09-17 20:11:11
合計ジャッジ時間 6,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,920 KB
testcase_01 AC 133 ms
53,748 KB
testcase_02 AC 137 ms
53,864 KB
testcase_03 AC 133 ms
53,924 KB
testcase_04 AC 133 ms
54,008 KB
testcase_05 AC 133 ms
53,832 KB
testcase_06 AC 134 ms
54,108 KB
testcase_07 AC 134 ms
54,232 KB
testcase_08 AC 137 ms
53,952 KB
testcase_09 AC 133 ms
53,996 KB
testcase_10 AC 133 ms
53,804 KB
testcase_11 AC 134 ms
54,208 KB
testcase_12 AC 134 ms
53,852 KB
testcase_13 AC 132 ms
53,872 KB
testcase_14 AC 137 ms
53,944 KB
testcase_15 AC 135 ms
53,896 KB
testcase_16 AC 133 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class No395 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        int a = s.nextInt();
        // x + 7 = a
        if((a - 7) > 7)  {
        	System.out.println(a - 7);
        }else {
        	System.out.println(-1);
        }
    }
}
0