結果
問題 | No.892 タピオカ |
ユーザー | d07ki3bq1uz |
提出日時 | 2019-12-08 23:14:20 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 514 bytes |
コンパイル時間 | 2,136 ms |
コンパイル使用メモリ | 73,872 KB |
実行使用メモリ | 54,224 KB |
最終ジャッジ日時 | 2024-06-10 20:58:20 |
合計ジャッジ時間 | 3,385 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
53,860 KB |
testcase_01 | AC | 117 ms
53,760 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 124 ms
54,036 KB |
testcase_05 | AC | 115 ms
54,064 KB |
testcase_06 | AC | 113 ms
54,008 KB |
testcase_07 | AC | 105 ms
53,024 KB |
testcase_08 | WA | - |
ソースコード
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(":-("); } } }