結果

問題 No.933 おまわりさんこいつです
ユーザー kappybarkappybar
提出日時 2020-03-26 10:59:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 514 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 268,588 KB
最終ジャッジ日時 2024-06-10 12:13:35
合計ジャッジ時間 5,949 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
58,884 KB
testcase_01 AC 33 ms
52,340 KB
testcase_02 AC 33 ms
53,056 KB
testcase_03 AC 32 ms
52,944 KB
testcase_04 AC 33 ms
53,632 KB
testcase_05 AC 33 ms
52,700 KB
testcase_06 AC 35 ms
52,648 KB
testcase_07 AC 34 ms
52,392 KB
testcase_08 AC 39 ms
52,860 KB
testcase_09 AC 35 ms
52,860 KB
testcase_10 AC 34 ms
53,088 KB
testcase_11 AC 38 ms
59,308 KB
testcase_12 AC 40 ms
61,836 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 62 ms
85,736 KB
testcase_18 AC 32 ms
52,200 KB
testcase_19 AC 127 ms
89,256 KB
testcase_20 RE -
testcase_21 AC 34 ms
52,484 KB
testcase_22 AC 35 ms
53,700 KB
testcase_23 TLE -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
p = list(map(int,input().split()))
ans = 1
for i in p:
    ans *= i

now = 0
ans = str(ans)
for i in ans:
    now += int(i)
    if now == 10:
        now = 1
    elif now == 11:
        now = 2
    elif now ==12:
        now = 3
    elif now ==13:
        now = 4
    elif now ==14:
        now =5
    elif now ==15:
        now = 6
    elif now ==16:
        now = 7
    elif now == 17:
        now = 8
    elif now ==18:
        now = 9
    elif now ==19:
        now = 1
            
print(now)
0