結果

問題 No.10 +か×か
ユーザー syarosyaro
提出日時 2016-01-17 01:48:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 929 ms / 5,000 ms
コード長 189 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 50,816 KB
最終ジャッジ日時 2024-12-14 15:33:45
合計ジャッジ時間 5,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,160 KB
testcase_01 AC 82 ms
12,288 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 929 ms
50,816 KB
testcase_04 AC 624 ms
37,376 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 927 ms
50,816 KB
testcase_07 AC 625 ms
37,504 KB
testcase_08 AC 235 ms
19,200 KB
testcase_09 AC 359 ms
25,600 KB
testcase_10 AC 87 ms
12,288 KB
testcase_11 AC 96 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,t,*a=gets(p).split.map &:to_i
d=(0..n-=1).map{[]}
n.downto(d[n][t]=2){|i|1.upto(t){|j|d[i-1][j]=d[i][j+a[i]]||d[i][j*a[i]]}}
v,=a
1.upto(n){|i|putc (f=d[i][n=v+a[i]])??+:?*;v=f ?n:v*a[i]}
0