結果
問題 | No.933 おまわりさんこいつです |
ユーザー | kzyKT |
提出日時 | 2019-11-29 21:56:56 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 161 bytes |
コンパイル時間 | 102 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 140,288 KB |
最終ジャッジ日時 | 2024-11-20 22:04:27 |
合計ジャッジ時間 | 18,992 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
17,536 KB |
testcase_01 | AC | 84 ms
81,352 KB |
testcase_02 | AC | 83 ms
17,408 KB |
testcase_03 | AC | 85 ms
92,420 KB |
testcase_04 | AC | 83 ms
17,408 KB |
testcase_05 | AC | 89 ms
140,288 KB |
testcase_06 | AC | 88 ms
17,408 KB |
testcase_07 | AC | 84 ms
103,004 KB |
testcase_08 | AC | 91 ms
17,408 KB |
testcase_09 | AC | 86 ms
12,032 KB |
testcase_10 | AC | 89 ms
12,032 KB |
testcase_11 | AC | 95 ms
12,288 KB |
testcase_12 | AC | 104 ms
14,080 KB |
testcase_13 | AC | 401 ms
29,312 KB |
testcase_14 | AC | 717 ms
35,840 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | AC | 138 ms
33,152 KB |
testcase_18 | AC | 83 ms
12,160 KB |
testcase_19 | AC | 316 ms
98,664 KB |
testcase_20 | TLE | - |
testcase_21 | AC | 85 ms
12,160 KB |
testcase_22 | AC | 86 ms
12,160 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
コンパイルメッセージ
Syntax OK
ソースコード
x = 1 n = gets.to_i a = gets.chomp.split(" ") for i in 0..n-1 x *= a[i].to_i end while x>=10 y = 0 while x>0 y+=x%10 x/=10 end x=y end print x