結果
問題 | No.313 π |
ユーザー | uafr_cs |
提出日時 | 2015-12-06 00:16:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 186 ms / 5,000 ms |
コード長 | 1,688 bytes |
コンパイル時間 | 2,497 ms |
コンパイル使用メモリ | 78,912 KB |
実行使用メモリ | 43,052 KB |
最終ジャッジ日時 | 2024-09-14 14:54:32 |
合計ジャッジ時間 | 9,723 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 178 ms
42,656 KB |
testcase_01 | AC | 161 ms
41,684 KB |
testcase_02 | AC | 156 ms
41,312 KB |
testcase_03 | AC | 178 ms
42,592 KB |
testcase_04 | AC | 175 ms
41,336 KB |
testcase_05 | AC | 186 ms
42,580 KB |
testcase_06 | AC | 180 ms
42,084 KB |
testcase_07 | AC | 180 ms
43,052 KB |
testcase_08 | AC | 180 ms
42,740 KB |
testcase_09 | AC | 182 ms
42,692 KB |
testcase_10 | AC | 164 ms
41,208 KB |
testcase_11 | AC | 158 ms
41,272 KB |
testcase_12 | AC | 163 ms
41,148 KB |
testcase_13 | AC | 180 ms
42,336 KB |
testcase_14 | AC | 167 ms
41,488 KB |
testcase_15 | AC | 169 ms
41,348 KB |
testcase_16 | AC | 176 ms
42,116 KB |
testcase_17 | AC | 161 ms
41,404 KB |
testcase_18 | AC | 179 ms
42,604 KB |
testcase_19 | AC | 180 ms
42,940 KB |
testcase_20 | AC | 179 ms
42,020 KB |
testcase_21 | AC | 181 ms
42,612 KB |
testcase_22 | AC | 179 ms
41,996 KB |
testcase_23 | AC | 166 ms
41,192 KB |
testcase_24 | AC | 152 ms
41,204 KB |
testcase_25 | AC | 169 ms
41,844 KB |
testcase_26 | AC | 180 ms
41,592 KB |
testcase_27 | AC | 172 ms
41,516 KB |
testcase_28 | AC | 182 ms
41,864 KB |
testcase_29 | AC | 170 ms
41,888 KB |
testcase_30 | AC | 177 ms
41,428 KB |
testcase_31 | AC | 167 ms
41,424 KB |
testcase_32 | AC | 179 ms
42,940 KB |
testcase_33 | AC | 172 ms
41,332 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { static int[] counts = new int[]{ 20104, 20063, 19892, 20011, 19874, 20199, 19898, 20163, 19956, 19841 }; public static int[] process(char[] inputs, boolean output){ int[] arr = new int[10]; for(final char ch : inputs){ if(!Character.isDigit(ch)){ continue; } arr[Character.getNumericValue(ch)]++; } if(!output){ return arr; } for(final int a : arr){ System.out.println(a + ","); } return arr; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); char[] input = sc.next().toCharArray(); boolean debug = false; int[] arr = process(input, debug); int less = -1, more = -1; for(int i = 0; i < 10; i++){ if(counts[i] < arr[i]){ more = i; }else if(counts[i] > arr[i]){ less = i; } } System.out.println(more + " " + less); } public static class Scanner { private BufferedReader br; private StringTokenizer tok; public Scanner(InputStream is) { br = new BufferedReader(new InputStreamReader(is)); } private void getLine() { try { while (!hasNext()) {tok = new StringTokenizer(br.readLine());} } catch(IOException e){ /* ignore */ } } private boolean hasNext() { return tok != null && tok.hasMoreTokens(); } public String next() { getLine(); return tok.nextToken(); } public int nextInt(){ return Integer.parseInt(next()); } public void close() { try{ br.close(); } catch (IOException e){ /*ignore*/ } } } }