結果

問題 No.933 おまわりさんこいつです
ユーザー H20H20
提出日時 2020-12-01 11:59:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 90,704 KB
最終ジャッジ日時 2024-09-13 02:55:34
合計ジャッジ時間 2,598 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,628 KB
testcase_01 AC 38 ms
52,216 KB
testcase_02 AC 39 ms
52,976 KB
testcase_03 AC 38 ms
52,084 KB
testcase_04 AC 38 ms
52,484 KB
testcase_05 AC 38 ms
51,628 KB
testcase_06 AC 38 ms
52,408 KB
testcase_07 AC 39 ms
52,228 KB
testcase_08 AC 38 ms
52,640 KB
testcase_09 AC 39 ms
52,460 KB
testcase_10 AC 39 ms
52,360 KB
testcase_11 AC 38 ms
52,136 KB
testcase_12 AC 38 ms
53,688 KB
testcase_13 AC 42 ms
60,524 KB
testcase_14 AC 43 ms
60,104 KB
testcase_15 AC 44 ms
60,668 KB
testcase_16 AC 49 ms
66,004 KB
testcase_17 AC 54 ms
76,100 KB
testcase_18 AC 38 ms
53,084 KB
testcase_19 AC 60 ms
79,004 KB
testcase_20 AC 59 ms
77,980 KB
testcase_21 AC 39 ms
52,504 KB
testcase_22 AC 38 ms
51,700 KB
testcase_23 AC 71 ms
90,692 KB
testcase_24 AC 72 ms
90,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(int,input().split()))
if L.count(0):
    print(0)
    exit()

ans = 1
for i in range(N):
    ans = (ans*L[i])%9
    if ans == 0:
        ans = 9
print(ans)
0