結果

問題 No.933 おまわりさんこいつです
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-02 06:05:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 243 bytes
コンパイル時間 1,274 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 92,892 KB
最終ジャッジ日時 2024-06-27 22:24:18
合計ジャッジ時間 4,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,104 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 40 ms
52,320 KB
testcase_04 AC 39 ms
52,548 KB
testcase_05 AC 37 ms
52,144 KB
testcase_06 AC 40 ms
52,856 KB
testcase_07 AC 39 ms
52,308 KB
testcase_08 AC 38 ms
52,080 KB
testcase_09 AC 37 ms
52,188 KB
testcase_10 AC 38 ms
52,764 KB
testcase_11 AC 36 ms
52,148 KB
testcase_12 AC 38 ms
53,208 KB
testcase_13 AC 42 ms
61,060 KB
testcase_14 AC 45 ms
63,068 KB
testcase_15 AC 49 ms
73,656 KB
testcase_16 AC 110 ms
78,504 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 345 ms
88,184 KB
testcase_21 AC 38 ms
52,016 KB
testcase_22 AC 38 ms
52,184 KB
testcase_23 AC 502 ms
92,892 KB
testcase_24 AC 753 ms
92,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
P = list(map(int, input().split()))

ans = 1
for p in P:
    if p%9 == 0:
        ans *= 9
    else:
        ans *= p%9
if 0 <= ans <= 8:
    print(ans)
else:
    if ans%9 == 0:
        print(9)
    else:
        print(ans%9)
0