結果

問題 No.395 永遠の17歳
ユーザー dogwood0424dogwood0424
提出日時 2018-02-05 13:56:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 371 bytes
コンパイル時間 2,918 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-07-07 14:39:29
合計ジャッジ時間 5,574 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,372 KB
testcase_01 AC 107 ms
41,288 KB
testcase_02 AC 107 ms
40,920 KB
testcase_03 AC 127 ms
39,920 KB
testcase_04 AC 94 ms
39,840 KB
testcase_05 AC 104 ms
40,756 KB
testcase_06 AC 108 ms
41,248 KB
testcase_07 AC 99 ms
40,088 KB
testcase_08 AC 99 ms
40,536 KB
testcase_09 AC 109 ms
41,024 KB
testcase_10 AC 108 ms
41,280 KB
testcase_11 AC 111 ms
41,048 KB
testcase_12 AC 104 ms
41,332 KB
testcase_13 AC 106 ms
41,068 KB
testcase_14 AC 107 ms
41,136 KB
testcase_15 AC 109 ms
41,120 KB
testcase_16 AC 108 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No395 {


	static int judge(int a) {
		int x =8;
		while(x<a) {
			if(a/x==1 && a%x==7) {
				return x;
			}
			else {
				x++;
			}

		}


		return -1;
	}

	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();

		int ans = judge(a);

		System.out.println(ans)
;
		sc.close();
	}

}
0