結果
| 問題 |
No.933 おまわりさんこいつです
|
| コンテスト | |
| ユーザー |
kagasan
|
| 提出日時 | 2020-04-19 20:30:05 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 262 bytes |
| コンパイル時間 | 159 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 27,544 KB |
| 最終ジャッジ日時 | 2024-10-06 06:25:04 |
| 合計ジャッジ時間 | 5,815 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 WA * 15 RE * 5 TLE * 1 -- * 1 |
ソースコード
# coding: utf-8
# Your code here!
def ketawa(x):
while x > 9:
y = 0
while x > 0:
y += (x % 10)
x = x // 10
x = y
return x
N = int(input())
X = 1
P = input().split()
for i in P:
X = X * int(i)
print(X)
kagasan