結果

問題 No.933 おまわりさんこいつです
ユーザー ああいいああいい
提出日時 2022-04-21 14:28:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 90,304 KB
最終ジャッジ日時 2024-06-22 18:31:37
合計ジャッジ時間 2,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,036 KB
testcase_01 AC 33 ms
52,284 KB
testcase_02 AC 32 ms
53,024 KB
testcase_03 AC 36 ms
52,772 KB
testcase_04 AC 33 ms
51,816 KB
testcase_05 AC 32 ms
53,220 KB
testcase_06 AC 34 ms
53,004 KB
testcase_07 AC 34 ms
53,628 KB
testcase_08 AC 34 ms
52,284 KB
testcase_09 AC 34 ms
51,900 KB
testcase_10 AC 35 ms
51,892 KB
testcase_11 AC 34 ms
52,320 KB
testcase_12 AC 34 ms
52,560 KB
testcase_13 AC 36 ms
60,012 KB
testcase_14 AC 36 ms
60,436 KB
testcase_15 AC 37 ms
61,208 KB
testcase_16 AC 41 ms
66,500 KB
testcase_17 AC 49 ms
76,764 KB
testcase_18 AC 33 ms
51,824 KB
testcase_19 AC 54 ms
79,780 KB
testcase_20 AC 50 ms
78,368 KB
testcase_21 AC 32 ms
52,228 KB
testcase_22 AC 33 ms
53,296 KB
testcase_23 AC 63 ms
90,304 KB
testcase_24 AC 62 ms
89,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int,input().split()))
ans = 1
import sys
for p in P:
    ans = ans * p % 9
    if p == 0:
        print(0)
        exit()
if ans == 0:
    ans = 9
print(ans)
0