結果
問題 | No.842 初詣 |
ユーザー | heyanxx |
提出日時 | 2019-07-03 15:34:20 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 876 bytes |
コンパイル時間 | 3,150 ms |
コンパイル使用メモリ | 73,312 KB |
実行使用メモリ | 37,060 KB |
最終ジャッジ日時 | 2024-09-15 07:39:51 |
合計ジャッジ時間 | 5,095 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
36,440 KB |
testcase_01 | AC | 51 ms
36,412 KB |
testcase_02 | AC | 52 ms
36,660 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 52 ms
36,560 KB |
testcase_07 | AC | 52 ms
36,608 KB |
testcase_08 | AC | 52 ms
36,724 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 52 ms
36,852 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 51 ms
36,684 KB |
testcase_15 | AC | 52 ms
36,488 KB |
testcase_16 | AC | 52 ms
36,972 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 51 ms
36,740 KB |
ソースコード
package test.demo; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Yukicoder842 { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ BufferedReader bf=new BufferedReader(new InputStreamReader(System.in)); try { String str =bf.readLine(); String[]str2=str.split(" "); int a=Integer.parseInt(str2[0]); int b=Integer.parseInt(str2[1]); int c=Integer.parseInt(str2[2]); int d=Integer.parseInt(str2[3]); int e=Integer.parseInt(str2[4]); int f=Integer.parseInt(str2[5]); int g=Integer.parseInt(str2[6]); if(a*500+b*100+c*50+d*10+e*5+f==g) { System.out.println("YES"); }else { System.out.println("NO"); } } catch (IOException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } } }