結果

問題 No.395 永遠の17歳
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-08-21 15:49:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 749 bytes
コンパイル時間 4,048 ms
コンパイル使用メモリ 79,176 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-10-05 02:05:31
合計ジャッジ時間 6,148 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,064 KB
testcase_01 AC 136 ms
53,940 KB
testcase_02 AC 123 ms
53,040 KB
testcase_03 AC 137 ms
54,236 KB
testcase_04 AC 125 ms
53,052 KB
testcase_05 AC 135 ms
54,256 KB
testcase_06 AC 115 ms
53,132 KB
testcase_07 AC 114 ms
53,168 KB
testcase_08 AC 129 ms
54,356 KB
testcase_09 AC 126 ms
53,868 KB
testcase_10 AC 137 ms
54,164 KB
testcase_11 AC 139 ms
54,236 KB
testcase_12 AC 139 ms
54,032 KB
testcase_13 AC 143 ms
53,804 KB
testcase_14 AC 121 ms
53,016 KB
testcase_15 AC 131 ms
54,240 KB
testcase_16 AC 133 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0395 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);
	static boolean debug = false;

	static void solve() {
		int a = in.nextInt();
		for (int i=8; i<1000; i++) {
			if (7 + i == a) {
				out.println(i);
				return;
			}
		}
		out.println("-1");
	}

	public static void main(String[] args) {
		debug = args.length > 0;
		long start = System.nanoTime();

		solve();
		out.flush();

		long end = System.nanoTime();
		dump((end - start) / 1000000 + " ms");
		in.close();
		out.close();
	}

	static void dump(Object... o) { if (debug) System.err.println(Arrays.deepToString(o)); }
}
0