結果
問題 | No.509 塗りつぶしツール |
ユーザー | shinwisteria |
提出日時 | 2017-05-04 21:18:47 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 481 bytes |
コンパイル時間 | 3,470 ms |
コンパイル使用メモリ | 74,472 KB |
実行使用メモリ | 41,600 KB |
最終ジャッジ日時 | 2024-09-14 07:16:05 |
合計ジャッジ時間 | 8,370 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
41,096 KB |
testcase_01 | AC | 125 ms
41,376 KB |
testcase_02 | AC | 128 ms
41,340 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 125 ms
41,404 KB |
testcase_07 | WA | - |
testcase_08 | AC | 123 ms
41,008 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 125 ms
41,116 KB |
testcase_15 | WA | - |
testcase_16 | AC | 129 ms
41,048 KB |
testcase_17 | WA | - |
testcase_18 | AC | 127 ms
41,136 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 127 ms
41,132 KB |
testcase_23 | AC | 126 ms
40,940 KB |
testcase_24 | AC | 124 ms
41,112 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 130 ms
41,040 KB |
testcase_28 | AC | 130 ms
41,100 KB |
testcase_29 | AC | 126 ms
41,364 KB |
ソースコード
import java.util.Scanner; public class Nuritsubushi { public static void main(String[] args) { Scanner s = new Scanner(System.in); StringBuilder n = new StringBuilder(s.next()); s.close(); int a = 0,b = 0,c = 0; while(n.length() != 0){ char ch = n.charAt(0); n.deleteCharAt(0); if(ch == '8'){ c++; }else if(ch == '0' || ch == '4' || ch == '6' || ch == '9'){ b++; }else{ a++; } } a = a*2 + b*3 + c*4 + 1; System.out.println(a); } }