結果

問題 No.933 おまわりさんこいつです
ユーザー mlihua09mlihua09
提出日時 2020-09-18 16:26:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 83,748 KB
最終ジャッジ日時 2024-06-22 08:01:58
合計ジャッジ時間 2,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,340 KB
testcase_01 AC 35 ms
52,460 KB
testcase_02 AC 33 ms
52,932 KB
testcase_03 AC 33 ms
53,376 KB
testcase_04 AC 34 ms
52,444 KB
testcase_05 AC 35 ms
52,972 KB
testcase_06 AC 35 ms
52,532 KB
testcase_07 AC 34 ms
52,572 KB
testcase_08 AC 38 ms
53,360 KB
testcase_09 AC 37 ms
52,876 KB
testcase_10 AC 38 ms
52,544 KB
testcase_11 AC 39 ms
52,084 KB
testcase_12 AC 36 ms
52,464 KB
testcase_13 AC 43 ms
59,216 KB
testcase_14 AC 42 ms
59,340 KB
testcase_15 AC 43 ms
60,320 KB
testcase_16 AC 46 ms
63,752 KB
testcase_17 AC 51 ms
69,868 KB
testcase_18 AC 38 ms
52,500 KB
testcase_19 AC 53 ms
73,368 KB
testcase_20 AC 52 ms
70,488 KB
testcase_21 AC 37 ms
52,952 KB
testcase_22 AC 38 ms
52,456 KB
testcase_23 AC 64 ms
82,228 KB
testcase_24 AC 63 ms
83,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = input()
ans = 1

for p in map(int, input().split()):
    if p:
        ans *= p
        ans %= 9
        
    else:
        
        print(0)
        exit()
        
print((ans - 1) % 9 + 1)
0