結果

問題 No.395 永遠の17歳
ユーザー htensaihtensai
提出日時 2019-12-10 14:34:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 390 bytes
コンパイル時間 2,698 ms
コンパイル使用メモリ 78,256 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-06-24 01:49:14
合計ジャッジ時間 5,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,308 KB
testcase_01 AC 131 ms
54,020 KB
testcase_02 AC 132 ms
54,364 KB
testcase_03 AC 130 ms
53,832 KB
testcase_04 AC 134 ms
54,024 KB
testcase_05 AC 135 ms
54,284 KB
testcase_06 AC 132 ms
54,288 KB
testcase_07 AC 130 ms
53,804 KB
testcase_08 AC 133 ms
53,888 KB
testcase_09 AC 122 ms
52,892 KB
testcase_10 AC 133 ms
53,964 KB
testcase_11 AC 135 ms
54,008 KB
testcase_12 AC 134 ms
54,300 KB
testcase_13 AC 131 ms
53,956 KB
testcase_14 AC 133 ms
54,084 KB
testcase_15 AC 131 ms
53,992 KB
testcase_16 AC 133 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int idx = 8;
        while (idx + 7 <= n) {
            if (idx + 7 == n) {
                System.out.println(idx);
                return;
            }
            idx++;
        }
        System.out.println(-1);
  }
}
0