結果

問題 No.395 永遠の17歳
ユーザー kenji_shioyakenji_shioya
提出日時 2016-07-24 15:37:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 264 bytes
コンパイル時間 4,296 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 55,692 KB
最終ジャッジ日時 2024-10-05 01:54:57
合計ジャッジ時間 5,385 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,784 KB
testcase_01 AC 114 ms
53,860 KB
testcase_02 AC 101 ms
52,728 KB
testcase_03 AC 100 ms
52,772 KB
testcase_04 AC 115 ms
54,060 KB
testcase_05 AC 100 ms
52,892 KB
testcase_06 AC 110 ms
53,824 KB
testcase_07 AC 113 ms
53,884 KB
testcase_08 AC 117 ms
53,784 KB
testcase_09 AC 109 ms
53,760 KB
testcase_10 AC 104 ms
53,048 KB
testcase_11 AC 107 ms
53,808 KB
testcase_12 AC 97 ms
52,276 KB
testcase_13 AC 112 ms
53,764 KB
testcase_14 AC 112 ms
53,912 KB
testcase_15 AC 111 ms
53,552 KB
testcase_16 AC 119 ms
55,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise150{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int a = sc.nextInt();

    if(a - 7 < 8){
      System.out.println(-1);
    }else{
      System.out.println(a - 7);
    }
  }
}
0