結果

問題 No.10 +か×か
ユーザー syarosyaro
提出日時 2016-01-17 01:48:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 936 ms / 5,000 ms
コード長 189 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 50,944 KB
最終ジャッジ日時 2024-05-08 11:49:34
合計ジャッジ時間 5,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 91 ms
12,032 KB
testcase_02 AC 91 ms
12,032 KB
testcase_03 AC 936 ms
50,688 KB
testcase_04 AC 633 ms
37,120 KB
testcase_05 AC 93 ms
12,288 KB
testcase_06 AC 925 ms
50,944 KB
testcase_07 AC 632 ms
37,248 KB
testcase_08 AC 228 ms
19,456 KB
testcase_09 AC 357 ms
25,472 KB
testcase_10 AC 79 ms
12,032 KB
testcase_11 AC 83 ms
12,288 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