結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー Cecil
提出日時 2022-12-20 16:12:10
言語 Java
(openjdk 23)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 1,663 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-11-18 01:52:22
合計ジャッジ時間 5,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);

		int n = scan.hasNextInt() ? scan.nextInt() : -1;
		double c = Math.pow(10, 9);
		if (n > c || n < 1) {
			System.out.println("入力エラー");
			return;
		}

		if (Integer.toString(n).contains("4") && Integer.toString(n).contains("6") ) {
			System.out.println("Beautiful");
		} else {
			System.out.println("...");
		}
	}
}
0