結果

問題 No.395 永遠の17歳
ユーザー YamaKasaYamaKasa
提出日時 2018-05-23 00:28:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 392 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-06-28 15:56:09
合計ジャッジ時間 5,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		scan.close();
		if(N == 17){
			System.out.println(10);
		}else {
			for(int i = 8; i <= 100; i++) {
				int t = 7 + i;
				if(t == N) {
					System.out.println(i);
					System.exit(0);
				}
			}
			System.out.println(-1);

		}
	}

}
0