結果

問題 No.395 永遠の17歳
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 21:33:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 444 bytes
コンパイル時間 3,963 ms
コンパイル使用メモリ 78,948 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-10-05 02:59:24
合計ジャッジ時間 6,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,976 KB
testcase_01 AC 124 ms
53,832 KB
testcase_02 AC 125 ms
53,724 KB
testcase_03 AC 114 ms
52,800 KB
testcase_04 AC 125 ms
53,780 KB
testcase_05 AC 125 ms
53,792 KB
testcase_06 AC 111 ms
52,656 KB
testcase_07 AC 124 ms
54,080 KB
testcase_08 AC 122 ms
54,036 KB
testcase_09 AC 124 ms
53,984 KB
testcase_10 AC 131 ms
54,048 KB
testcase_11 AC 130 ms
53,880 KB
testcase_12 AC 113 ms
52,964 KB
testcase_13 AC 131 ms
53,944 KB
testcase_14 AC 127 ms
53,776 KB
testcase_15 AC 127 ms
54,304 KB
testcase_16 AC 123 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Forever17 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int A = s.nextInt(),X = -1;
		s.close();
		for(int i = 1;i <= A-7;i++){
			StringBuilder str = new StringBuilder();
			str.append(A/i);
			str.append(A%i);
			if(str.toString().equals("17")){
				X = i;
				break;
			}
		}
		System.out.println(X);

	}

}
0