結果

問題 No.892 タピオカ
ユーザー d07ki3bq1uzd07ki3bq1uz
提出日時 2019-12-08 23:14:20
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 514 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 76,524 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2025-01-02 18:44:28
合計ジャッジ時間 3,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
54,184 KB
testcase_01 AC 111 ms
54,232 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 109 ms
54,240 KB
testcase_05 AC 106 ms
54,340 KB
testcase_06 AC 120 ms
54,132 KB
testcase_07 AC 119 ms
54,228 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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