結果

問題 No.933 おまわりさんこいつです
ユーザー c0degeekc0degeek
提出日時 2019-11-29 23:09:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 160 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 313,088 KB
最終ジャッジ日時 2024-11-20 23:50:25
合計ジャッジ時間 9,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,740 KB
testcase_01 AC 39 ms
313,088 KB
testcase_02 AC 39 ms
60,324 KB
testcase_03 AC 39 ms
52,972 KB
testcase_04 AC 40 ms
52,572 KB
testcase_05 AC 39 ms
52,784 KB
testcase_06 AC 40 ms
53,440 KB
testcase_07 AC 39 ms
52,688 KB
testcase_08 AC 40 ms
52,444 KB
testcase_09 AC 39 ms
51,928 KB
testcase_10 AC 40 ms
52,432 KB
testcase_11 AC 40 ms
52,072 KB
testcase_12 AC 39 ms
53,080 KB
testcase_13 AC 48 ms
68,416 KB
testcase_14 AC 56 ms
75,672 KB
testcase_15 AC 88 ms
75,948 KB
testcase_16 AC 474 ms
78,752 KB
testcase_17 AC 69 ms
83,452 KB
testcase_18 AC 39 ms
52,548 KB
testcase_19 AC 158 ms
86,152 KB
testcase_20 AC 374 ms
84,916 KB
testcase_21 AC 39 ms
53,020 KB
testcase_22 AC 40 ms
52,520 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
t=map(int,input().split())
x=1
for i in t:
    x*=i
if x==0:
    print(0)
else:
    x%=9
    if x==0:
        print(9)
    else:
        print(x)
0