結果

問題 No.892 タピオカ
ユーザー d07ki3bq1uzd07ki3bq1uz
提出日時 2019-12-08 23:23:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 459 bytes
コンパイル時間 1,701 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 54,632 KB
最終ジャッジ日時 2024-06-10 21:08:24
合計ジャッジ時間 3,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,740 KB
testcase_01 AC 109 ms
53,844 KB
testcase_02 AC 101 ms
52,948 KB
testcase_03 AC 115 ms
54,180 KB
testcase_04 AC 117 ms
54,180 KB
testcase_05 AC 99 ms
52,884 KB
testcase_06 AC 103 ms
52,792 KB
testcase_07 AC 119 ms
53,948 KB
testcase_08 AC 98 ms
54,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main (String[] args) {
        
        Scanner s = new Scanner(System.in);
        
        int l = 0;
      
        for (int i =0; i<3 ;i++){
            int a =s.nextInt();
            int b =s.nextInt();
        
            l += a%2;
        } 
            if(l%2 == 0){
                System.out.println(":-)");
            }else{
                System.out.println(":-(");
            }
    }
}
0