結果

問題 No.933 おまわりさんこいつです
ユーザー watarimaycry2watarimaycry2
提出日時 2019-12-03 23:59:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 971 bytes
コンパイル時間 2,546 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 53,212 KB
最終ジャッジ日時 2024-11-28 00:57:32
合計ジャッジ時間 10,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,352 KB
testcase_01 AC 105 ms
40,952 KB
testcase_02 AC 112 ms
41,316 KB
testcase_03 AC 102 ms
40,188 KB
testcase_04 AC 105 ms
39,864 KB
testcase_05 AC 116 ms
41,284 KB
testcase_06 AC 105 ms
39,984 KB
testcase_07 AC 110 ms
40,036 KB
testcase_08 AC 122 ms
41,820 KB
testcase_09 AC 118 ms
41,228 KB
testcase_10 AC 128 ms
41,804 KB
testcase_11 AC 152 ms
41,696 KB
testcase_12 AC 162 ms
42,596 KB
testcase_13 AC 193 ms
44,824 KB
testcase_14 AC 194 ms
45,924 KB
testcase_15 AC 239 ms
47,056 KB
testcase_16 AC 352 ms
48,392 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 454 ms
48,512 KB
testcase_21 AC 113 ms
41,220 KB
testcase_22 AC 113 ms
41,196 KB
testcase_23 AC 606 ms
52,736 KB
testcase_24 AC 613 ms
53,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
        static Scanner sc = new Scanner(System.in);
        static void myout(Object t){System.out.println(t);}
        static String getStr(){return sc.next();}
        static int getInt(){return sc.nextInt();}
        static Long getLong(){return sc.nextLong();}
        static boolean isNext(){return sc.hasNext();}
        public static void main(String[] args){
          int N = getInt();
          long[] list = new long[N];
          long output = 1;
          for(int i = 0; i < N; i++){
            long p = getLong() % 9;
            if(p == 0){
              p = 9;
            }
            list[i] = p;
          }
          for(int i = 0; i < N; i++){
            output = (output * list[i]) % 9;
            if(output == 0){
              output = 9;
            }
          }
          myout(output);
        }
        //便利メソッド追加枠ここから

        //便利メソッド追加枠ここまで
}
0