結果

問題 No.933 おまわりさんこいつです
ユーザー pekempeypekempey
提出日時 2019-11-29 21:45:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 89,512 KB
最終ジャッジ日時 2024-11-20 21:48:01
合計ジャッジ時間 2,389 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,000 KB
testcase_01 AC 40 ms
51,988 KB
testcase_02 AC 39 ms
52,052 KB
testcase_03 AC 40 ms
52,188 KB
testcase_04 AC 40 ms
51,848 KB
testcase_05 AC 40 ms
51,656 KB
testcase_06 AC 40 ms
52,184 KB
testcase_07 AC 44 ms
51,820 KB
testcase_08 AC 40 ms
52,256 KB
testcase_09 AC 40 ms
52,136 KB
testcase_10 AC 40 ms
51,932 KB
testcase_11 AC 42 ms
52,380 KB
testcase_12 AC 42 ms
52,288 KB
testcase_13 AC 47 ms
59,424 KB
testcase_14 AC 47 ms
59,792 KB
testcase_15 AC 47 ms
60,860 KB
testcase_16 AC 52 ms
66,012 KB
testcase_17 AC 59 ms
74,212 KB
testcase_18 AC 39 ms
51,784 KB
testcase_19 AC 65 ms
78,628 KB
testcase_20 AC 64 ms
77,608 KB
testcase_21 AC 40 ms
51,700 KB
testcase_22 AC 39 ms
51,696 KB
testcase_23 AC 81 ms
89,512 KB
testcase_24 AC 79 ms
89,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int, input().split()))
if 0 in P:
  print(0)
else:
  ans = 1
  for x in P:
    ans *= x
    ans %= 9
  print((ans - 1) % 9 + 1)
0