結果
問題 | No.193 筒の数式 |
ユーザー | suppy193 |
提出日時 | 2015-06-18 13:51:59 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 219 bytes |
コンパイル時間 | 52 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-07-07 03:37:50 |
合計ジャッジ時間 | 2,462 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
12,288 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 85 ms
12,160 KB |
testcase_04 | AC | 84 ms
12,032 KB |
testcase_05 | AC | 85 ms
12,160 KB |
testcase_06 | WA | - |
testcase_07 | AC | 86 ms
12,160 KB |
testcase_08 | AC | 85 ms
12,160 KB |
testcase_09 | AC | 87 ms
12,032 KB |
testcase_10 | WA | - |
testcase_11 | AC | 83 ms
12,160 KB |
testcase_12 | AC | 82 ms
12,288 KB |
testcase_13 | AC | 84 ms
12,032 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
s = gets.chomp max = 0 (1...s.length).each do |i| # print s[0, i], " ", s[i..-1], "\n" s2 = s[i..-1] + s[0, i] next if s2[0] < '0' || s2[0] > '9' || s2[-1] < '0' || s2[-1] > '9' max = [eval(s2), max].max end puts max