結果
問題 | No.910 素数部分列 |
ユーザー | tenten |
提出日時 | 2023-01-10 17:55:43 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,917 bytes |
コンパイル時間 | 2,997 ms |
コンパイル使用メモリ | 90,820 KB |
実行使用メモリ | 52,440 KB |
最終ジャッジ日時 | 2024-12-21 12:15:20 |
合計ジャッジ時間 | 10,588 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 68 ms
50,416 KB |
testcase_01 | AC | 63 ms
50,340 KB |
testcase_02 | AC | 66 ms
50,004 KB |
testcase_03 | AC | 66 ms
50,356 KB |
testcase_04 | AC | 66 ms
50,424 KB |
testcase_05 | AC | 64 ms
50,092 KB |
testcase_06 | AC | 67 ms
50,300 KB |
testcase_07 | AC | 65 ms
50,104 KB |
testcase_08 | AC | 67 ms
50,000 KB |
testcase_09 | AC | 67 ms
50,288 KB |
testcase_10 | AC | 65 ms
50,296 KB |
testcase_11 | AC | 63 ms
50,064 KB |
testcase_12 | AC | 63 ms
50,264 KB |
testcase_13 | WA | - |
testcase_14 | AC | 63 ms
50,428 KB |
testcase_15 | WA | - |
testcase_16 | AC | 63 ms
50,284 KB |
testcase_17 | WA | - |
testcase_18 | AC | 64 ms
50,092 KB |
testcase_19 | AC | 63 ms
50,200 KB |
testcase_20 | WA | - |
testcase_21 | AC | 62 ms
50,268 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 131 ms
51,912 KB |
testcase_44 | AC | 127 ms
52,008 KB |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | AC | 128 ms
52,192 KB |
testcase_49 | AC | 124 ms
52,072 KB |
testcase_50 | AC | 122 ms
51,852 KB |
testcase_51 | AC | 130 ms
52,080 KB |
testcase_52 | AC | 124 ms
51,988 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int one = 0; int[] counts = new int[10]; int ans = 0; for (char c : sc.next().toCharArray()) { int num = c - '0'; if (num == 9) { if (one > 0) { one--; ans++; } } else if (num == 1) { one++; } else { ans++; } } ans += one / 2; System.out.println(ans); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }