結果
問題 | No.509 塗りつぶしツール |
ユーザー | fjafjafja |
提出日時 | 2017-07-19 00:48:51 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 608 bytes |
コンパイル時間 | 3,199 ms |
コンパイル使用メモリ | 74,864 KB |
実行使用メモリ | 51,936 KB |
最終ジャッジ日時 | 2024-10-08 11:10:06 |
合計ジャッジ時間 | 5,943 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
36,840 KB |
testcase_01 | AC | 52 ms
36,788 KB |
testcase_02 | AC | 53 ms
36,768 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 56 ms
37,112 KB |
testcase_07 | WA | - |
testcase_08 | AC | 54 ms
36,512 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 55 ms
36,380 KB |
testcase_15 | WA | - |
testcase_16 | AC | 53 ms
36,820 KB |
testcase_17 | WA | - |
testcase_18 | AC | 53 ms
36,792 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 53 ms
36,864 KB |
testcase_23 | AC | 53 ms
36,676 KB |
testcase_24 | AC | 59 ms
36,808 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 53 ms
36,724 KB |
testcase_28 | AC | 54 ms
36,392 KB |
testcase_29 | AC | 58 ms
36,988 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class N509 { public static void main(String[] args)throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String n=br.readLine(); int total=1; for(int i=0;i<n.length();i++) { switch(Integer.parseInt(n.substring(i, i+1))) { case 1: case 2: case 3: case 5: case 7: total+=2; break; case 0: case 4: case 6: case 9: total+=3; break; case 8: total+=4; break; } } System.out.println(total); } }