結果
問題 | No.933 おまわりさんこいつです |
ユーザー | k_tsushima |
提出日時 | 2020-01-01 08:32:03 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,316 bytes |
コンパイル時間 | 3,774 ms |
コンパイル使用メモリ | 91,060 KB |
実行使用メモリ | 106,640 KB |
最終ジャッジ日時 | 2024-11-21 15:14:15 |
合計ジャッジ時間 | 16,327 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
53,952 KB |
testcase_01 | AC | 74 ms
106,640 KB |
testcase_02 | AC | 73 ms
53,704 KB |
testcase_03 | AC | 72 ms
47,032 KB |
testcase_04 | AC | 73 ms
46,904 KB |
testcase_05 | AC | 76 ms
49,216 KB |
testcase_06 | AC | 76 ms
47,220 KB |
testcase_07 | AC | 79 ms
47,428 KB |
testcase_08 | AC | 79 ms
49,092 KB |
testcase_09 | AC | 80 ms
47,292 KB |
testcase_10 | AC | 94 ms
47,284 KB |
testcase_11 | AC | 106 ms
48,424 KB |
testcase_12 | AC | 123 ms
50,288 KB |
testcase_13 | AC | 260 ms
54,776 KB |
testcase_14 | AC | 325 ms
54,828 KB |
testcase_15 | AC | 495 ms
55,728 KB |
testcase_16 | AC | 1,414 ms
68,196 KB |
testcase_17 | AC | 303 ms
53,020 KB |
testcase_18 | AC | 73 ms
47,248 KB |
testcase_19 | AC | 451 ms
53,140 KB |
testcase_20 | AC | 931 ms
58,040 KB |
testcase_21 | AC | 73 ms
49,308 KB |
testcase_22 | AC | 72 ms
47,280 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import java.util.StringTokenizer; import java.util.stream.Collectors; import java.util.stream.Stream; public class Main { private static class FastScanner { private BufferedReader reader = null; private StringTokenizer tokenizer = null; public FastScanner(InputStream in) { reader = new BufferedReader(new InputStreamReader(in)); tokenizer = null; } public String next() { if (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } public String nextLine() { if (tokenizer == null || !tokenizer.hasMoreTokens()) { try { return reader.readLine(); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken("\n"); } public long nextLong() { return Long.parseLong(next()); } public int nextInt() { return Integer.parseInt(next()); } public double nextDouble() { return Double.parseDouble(next()); } public int[] nextIntArray(int n) { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = nextInt(); return a; } public long[] nextLongArray(int n) { long[] a = new long[n]; for (int i = 0; i < n; i++) a[i] = nextLong(); return a; } } public static void main(String[] args) { FastScanner sc = new FastScanner(System.in); int n = sc.nextInt(); BigInteger b = new BigInteger("1"); for (int i = 0; i < n; i++) { b = b.multiply(new BigInteger(sc.next())); } List<Integer> ds = Stream.of(b.toString().split("")).mapToInt(Integer::parseInt).collect(ArrayList::new, ArrayList::add, ArrayList::addAll); while (ds.size() > 1) { int sum = 0; for (int d : ds) sum += d; ds.clear(); while (sum > 0) { ds.add(sum % 10); sum /= 10; } } System.out.println(ds.get(0)); } }