結果

問題 No.933 おまわりさんこいつです
ユーザー tanon710tanon710
提出日時 2020-10-04 01:30:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 90,096 KB
最終ジャッジ日時 2024-07-18 11:17:31
合計ジャッジ時間 2,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,428 KB
testcase_01 AC 31 ms
52,580 KB
testcase_02 AC 31 ms
51,824 KB
testcase_03 AC 30 ms
53,132 KB
testcase_04 AC 31 ms
51,852 KB
testcase_05 AC 31 ms
53,016 KB
testcase_06 AC 30 ms
52,564 KB
testcase_07 AC 29 ms
53,160 KB
testcase_08 AC 31 ms
52,420 KB
testcase_09 AC 31 ms
52,832 KB
testcase_10 AC 34 ms
51,952 KB
testcase_11 AC 34 ms
53,032 KB
testcase_12 AC 34 ms
52,952 KB
testcase_13 AC 37 ms
59,488 KB
testcase_14 AC 34 ms
60,036 KB
testcase_15 AC 37 ms
61,264 KB
testcase_16 AC 40 ms
65,668 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 57 ms
77,512 KB
testcase_21 AC 37 ms
52,692 KB
testcase_22 AC 36 ms
52,620 KB
testcase_23 AC 69 ms
90,096 KB
testcase_24 AC 69 ms
90,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
arr=list(map(int,input().split()))
tmp=1
for val in arr:
    tmp*=val
    tmp%=9
if tmp==0:
    print(9)
else:
    print(tmp)
0