結果

問題 No.933 おまわりさんこいつです
ユーザー k_tsushimak_tsushima
提出日時 2020-01-01 08:54:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,841 bytes
コンパイル時間 2,421 ms
コンパイル使用メモリ 77,744 KB
実行使用メモリ 60,876 KB
最終ジャッジ日時 2024-11-21 16:09:46
合計ジャッジ時間 5,637 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,468 KB
testcase_01 AC 58 ms
50,388 KB
testcase_02 AC 58 ms
50,312 KB
testcase_03 AC 56 ms
50,448 KB
testcase_04 AC 57 ms
50,240 KB
testcase_05 AC 57 ms
50,400 KB
testcase_06 AC 57 ms
50,040 KB
testcase_07 AC 57 ms
50,436 KB
testcase_08 AC 58 ms
50,488 KB
testcase_09 AC 56 ms
50,408 KB
testcase_10 AC 59 ms
51,956 KB
testcase_11 AC 58 ms
50,172 KB
testcase_12 AC 61 ms
50,444 KB
testcase_13 AC 93 ms
51,160 KB
testcase_14 AC 99 ms
51,836 KB
testcase_15 AC 98 ms
51,980 KB
testcase_16 AC 146 ms
54,200 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 175 ms
56,156 KB
testcase_21 AC 55 ms
50,472 KB
testcase_22 AC 55 ms
50,048 KB
testcase_23 AC 263 ms
60,700 KB
testcase_24 AC 260 ms
60,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

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();
    long ans = 1;
    for (int i = 0; i < n; i++) {
      long a = sc.nextLong() % 9;
      ans = (ans * a) % 9;
    }
    System.out.println(ans == 0 ? 9 : ans);
  }
}
0