結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー ks2m
提出日時 2021-10-29 21:22:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 2,604 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-10-07 09:32:00
合計ジャッジ時間 5,681 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		String n = sc.next();
		sc.close();

		if (n.indexOf("4") != -1 && n.indexOf("6") != -1) {
			System.out.println("Beautiful");
		} else {
			System.out.println("...");
		}
	}
}
0