結果
問題 | No.933 おまわりさんこいつです |
ユーザー | otsuri_114514 |
提出日時 | 2019-11-29 21:57:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 728 bytes |
コンパイル時間 | 211 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 22,148 KB |
最終ジャッジ日時 | 2024-11-20 22:05:15 |
合計ジャッジ時間 | 5,485 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,880 KB |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | AC | 30 ms
10,752 KB |
testcase_07 | AC | 31 ms
10,752 KB |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | AC | 29 ms
10,624 KB |
testcase_10 | AC | 29 ms
10,624 KB |
testcase_11 | AC | 30 ms
10,624 KB |
testcase_12 | AC | 31 ms
10,752 KB |
testcase_13 | AC | 45 ms
11,008 KB |
testcase_14 | AC | 53 ms
11,136 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 383 ms
18,284 KB |
testcase_18 | AC | 28 ms
10,880 KB |
testcase_19 | AC | 486 ms
20,660 KB |
testcase_20 | RE | - |
testcase_21 | AC | 30 ms
10,752 KB |
testcase_22 | AC | 30 ms
10,752 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
ソースコード
#import pysnooper #import numpy #import os,re,sys,operator #from collections import Counter,deque #from operator import itemgetter #from itertools import accumulate,combinations,groupby,combinations_with_replacement,permutations from sys import stdin,setrecursionlimit #from bisect import bisect_left,bisect_right #from copy import deepcopy #import heapq #import math #import string #from time import time #from functools import lru_cache setrecursionlimit(10**6) input=stdin.readline n=int(input().rstrip()) p=[int(i) for i in input().split()] tmp=1 for i in p: now=i while len(str(now))!=1: now=sum(list(map(int,str(now)))) tmp*=now while len(str(tmp))!=1: tmp=sum(list(map(int,str(tmp)))) print(tmp)