結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー CecilCecil
提出日時 2022-12-20 16:12:10
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,784 KB
testcase_01 AC 107 ms
40,908 KB
testcase_02 AC 106 ms
41,264 KB
testcase_03 AC 105 ms
40,904 KB
testcase_04 AC 96 ms
41,272 KB
testcase_05 AC 108 ms
41,284 KB
testcase_06 AC 94 ms
40,820 KB
testcase_07 AC 97 ms
41,224 KB
testcase_08 AC 97 ms
40,996 KB
testcase_09 AC 105 ms
40,776 KB
testcase_10 AC 96 ms
40,816 KB
testcase_11 AC 98 ms
40,784 KB
testcase_12 AC 102 ms
41,276 KB
testcase_13 AC 106 ms
41,236 KB
testcase_14 AC 97 ms
41,692 KB
testcase_15 AC 105 ms
41,004 KB
testcase_16 AC 105 ms
40,816 KB
testcase_17 AC 104 ms
41,080 KB
testcase_18 AC 104 ms
41,396 KB
testcase_19 AC 106 ms
41,048 KB
testcase_20 AC 98 ms
41,404 KB
testcase_21 AC 97 ms
40,984 KB
testcase_22 AC 104 ms
39,784 KB
testcase_23 AC 93 ms
41,148 KB
testcase_24 AC 97 ms
41,308 KB
testcase_25 AC 109 ms
41,108 KB
testcase_26 AC 100 ms
40,144 KB
権限があれば一括ダウンロードができます

ソースコード

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