結果

問題 No.892 タピオカ
ユーザー 025218025218
提出日時 2019-11-12 13:48:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 548 bytes
コンパイル時間 2,682 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-09-18 23:48:55
合計ジャッジ時間 4,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,896 KB
testcase_01 AC 114 ms
54,076 KB
testcase_02 AC 120 ms
53,768 KB
testcase_03 AC 124 ms
54,196 KB
testcase_04 AC 100 ms
52,372 KB
testcase_05 AC 116 ms
54,080 KB
testcase_06 AC 125 ms
53,968 KB
testcase_07 AC 122 ms
54,272 KB
testcase_08 AC 110 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        long[][] t = new long[3][2];
        Scanner sc = new Scanner(System.in);
        for(int i=0;i<3;i++){
            t[i][0] = sc.nextLong();
            t[i][1] = sc.nextLong();
        }
        sc.close();

        int c = 0;
        for(int i=0; i<3 ;i++){
            if(t[i][0] % 2 == 0) c++;
        }

        if(c==1 || c== 3){
            System.out.println(":-)");
        }else{
            System.out.println(":-(");
        }
    }
}
0