結果

問題 No.892 タピオカ
ユーザー machoniumpmachoniump
提出日時 2021-03-18 16:40:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 534 bytes
コンパイル時間 2,649 ms
コンパイル使用メモリ 75,236 KB
実行使用メモリ 42,028 KB
最終ジャッジ日時 2024-11-16 19:53:54
合計ジャッジ時間 4,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
42,028 KB
testcase_01 AC 130 ms
41,124 KB
testcase_02 AC 135 ms
41,676 KB
testcase_03 AC 136 ms
41,740 KB
testcase_04 AC 136 ms
41,808 KB
testcase_05 AC 128 ms
40,484 KB
testcase_06 AC 134 ms
41,244 KB
testcase_07 AC 134 ms
41,156 KB
testcase_08 AC 127 ms
40,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Pictus{
  static public void main(String[]$){
    String s[]={};
    try{
      s=System.console().readLine().split(" ");
    }catch(java.lang.NullPointerException e){
      Scanner sc=new Scanner(System.in);
      s=sc.nextLine().split(" ");
      if(sc!=null){
        sc.close();
      }
    }finally{
      System.out.println(p(s[0],s[2],s[4])?":-)":":-(");
    }
  }
  static boolean p(String...a){
    int t=0,i=0;
    for(;i<3;i++) t+=Integer.parseInt(a[i])%2;
    return t%2<1?true:false;
  }
}
0