結果

問題 No.892 タピオカ
ユーザー ks2mks2m
提出日時 2019-09-27 21:26:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-09-24 20:44:36
合計ジャッジ時間 3,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,868 KB
testcase_01 AC 127 ms
53,632 KB
testcase_02 AC 128 ms
53,764 KB
testcase_03 AC 126 ms
53,908 KB
testcase_04 AC 125 ms
53,884 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 132 ms
53,868 KB
testcase_08 AC 126 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int a1 = sc.nextInt(); sc.nextInt();
		int a2 = sc.nextInt(); sc.nextInt();
		int a3 = sc.nextInt(); sc.nextInt();
		sc.close();

		if (a1 % 2 == 1 && a2 % 2 == 1 && a3 % 2 == 1) {
			System.out.println(":-(");
		} else {
			System.out.println(":-)");
		}
	}
}
0