結果
問題 | No.636 硬貨の枚数2 |
ユーザー | 👑 hos.lyric |
提出日時 | 2019-01-29 16:29:58 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 220 bytes |
コンパイル時間 | 64 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-10-10 11:05:46 |
合計ジャッジ時間 | 7,894 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
12,160 KB |
testcase_01 | AC | 90 ms
12,160 KB |
testcase_02 | AC | 83 ms
12,160 KB |
testcase_03 | RE | - |
testcase_04 | AC | 88 ms
12,160 KB |
testcase_05 | AC | 88 ms
12,288 KB |
testcase_06 | AC | 87 ms
12,288 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 89 ms
12,032 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | AC | 93 ms
12,544 KB |
testcase_45 | AC | 92 ms
12,416 KB |
testcase_46 | AC | 93 ms
12,288 KB |
testcase_47 | AC | 92 ms
12,416 KB |
testcase_48 | AC | 97 ms
12,288 KB |
testcase_49 | AC | 94 ms
12,160 KB |
testcase_50 | AC | 98 ms
12,160 KB |
testcase_51 | AC | 93 ms
12,160 KB |
testcase_52 | AC | 93 ms
12,160 KB |
testcase_53 | AC | 92 ms
12,416 KB |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | AC | 86 ms
12,160 KB |
testcase_60 | AC | 87 ms
12,160 KB |
testcase_61 | AC | 86 ms
12,288 KB |
testcase_62 | AC | 94 ms
12,288 KB |
testcase_63 | AC | 91 ms
12,160 KB |
testcase_64 | RE | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
コンパイルメッセージ
Syntax OK
ソースコード
a,b=0,1 gets.chop.chars{|c|x=c.ord-48 # y=x/5;a,b=[a+y,b+2-y].min,[a+1+y,b+1-y].min # y=x%5;a,b=[a+y,b+5-y].min,[a+1+y,b+4-y].min f=[0,1,2,3,2,1,2,3,4,3] a,b=[a+f[x],b+f[10-x]].min,[a+f[1+x],b+f[9-x]].min } p [a,b+1].min