結果

問題 No.933 おまわりさんこいつです
ユーザー ああいいああいい
提出日時 2022-04-21 14:28:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 89,492 KB
最終ジャッジ日時 2024-06-22 18:30:41
合計ジャッジ時間 1,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,136 KB
testcase_01 AC 36 ms
52,220 KB
testcase_02 AC 35 ms
51,692 KB
testcase_03 AC 34 ms
52,620 KB
testcase_04 AC 32 ms
51,748 KB
testcase_05 AC 32 ms
53,100 KB
testcase_06 AC 32 ms
52,464 KB
testcase_07 AC 32 ms
53,428 KB
testcase_08 AC 33 ms
52,924 KB
testcase_09 AC 33 ms
52,212 KB
testcase_10 AC 33 ms
52,876 KB
testcase_11 AC 33 ms
52,364 KB
testcase_12 AC 33 ms
53,308 KB
testcase_13 AC 37 ms
60,612 KB
testcase_14 AC 39 ms
60,268 KB
testcase_15 AC 38 ms
60,936 KB
testcase_16 AC 43 ms
65,536 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 51 ms
78,796 KB
testcase_21 AC 35 ms
52,328 KB
testcase_22 AC 36 ms
52,500 KB
testcase_23 AC 65 ms
89,492 KB
testcase_24 AC 63 ms
89,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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