結果

問題 No.933 おまわりさんこいつです
ユーザー tyawanmusityawanmusi
提出日時 2019-11-29 22:17:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 135 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 313,876 KB
最終ジャッジ日時 2024-11-20 23:26:48
合計ジャッジ時間 17,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,776 KB
testcase_01 AC 37 ms
128,696 KB
testcase_02 AC 38 ms
59,744 KB
testcase_03 AC 40 ms
131,028 KB
testcase_04 AC 38 ms
60,292 KB
testcase_05 AC 38 ms
313,876 KB
testcase_06 AC 39 ms
59,244 KB
testcase_07 AC 37 ms
53,120 KB
testcase_08 AC 39 ms
53,228 KB
testcase_09 AC 39 ms
52,336 KB
testcase_10 AC 38 ms
53,420 KB
testcase_11 AC 45 ms
59,948 KB
testcase_12 AC 57 ms
60,648 KB
testcase_13 AC 409 ms
75,604 KB
testcase_14 AC 798 ms
75,624 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 69 ms
85,952 KB
testcase_18 AC 37 ms
52,972 KB
testcase_19 AC 152 ms
89,188 KB
testcase_20 TLE -
testcase_21 AC 38 ms
52,612 KB
testcase_22 AC 37 ms
52,176 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=list(map(int,input().split()))
a=1
for i in p:a*=i
while a>9:
  b=0
  while a>0:
    b+=a%10
    a//=10
  a=b
print(a)
0