結果

問題 No.933 おまわりさんこいつです
ユーザー pekempeypekempey
提出日時 2019-11-29 21:44:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 89,472 KB
最終ジャッジ日時 2024-11-20 21:46:18
合計ジャッジ時間 2,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,944 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 39 ms
51,328 KB
testcase_05 AC 39 ms
51,328 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 38 ms
53,408 KB
testcase_08 AC 39 ms
52,268 KB
testcase_09 AC 39 ms
51,740 KB
testcase_10 AC 39 ms
51,992 KB
testcase_11 AC 39 ms
51,712 KB
testcase_12 AC 42 ms
52,352 KB
testcase_13 AC 44 ms
58,880 KB
testcase_14 AC 43 ms
59,520 KB
testcase_15 AC 44 ms
60,672 KB
testcase_16 AC 49 ms
65,536 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 62 ms
77,056 KB
testcase_21 AC 39 ms
51,840 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 AC 73 ms
89,216 KB
testcase_24 AC 74 ms
89,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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