結果

問題 No.395 永遠の17歳
ユーザー atkrymatkrym
提出日時 2016-10-19 10:56:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 3,914 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-11-22 15:05:51
合計ジャッジ時間 6,985 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,200 KB
testcase_01 AC 127 ms
41,344 KB
testcase_02 AC 124 ms
40,824 KB
testcase_03 AC 127 ms
41,208 KB
testcase_04 AC 128 ms
41,040 KB
testcase_05 AC 127 ms
41,124 KB
testcase_06 WA -
testcase_07 AC 128 ms
41,124 KB
testcase_08 AC 115 ms
40,088 KB
testcase_09 WA -
testcase_10 AC 127 ms
41,332 KB
testcase_11 AC 128 ms
41,020 KB
testcase_12 AC 112 ms
40,044 KB
testcase_13 AC 127 ms
40,920 KB
testcase_14 AC 125 ms
41,132 KB
testcase_15 AC 125 ms
40,912 KB
testcase_16 AC 121 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int a = sc.nextInt();
        for (int i = 0;i <= 100; i++) {
            if (a - i == 7) {
                System.out.println(i);
                return;
            }
        }
        System.out.println(-1);
    }
}
0