結果
問題 | No.83 最大マッチング |
ユーザー | hokto |
提出日時 | 2019-01-06 08:28:44 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 184 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 38,656 KB |
最終ジャッジ日時 | 2024-05-03 03:08:27 |
合計ジャッジ時間 | 7,950 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
12,160 KB |
testcase_01 | AC | 87 ms
12,032 KB |
testcase_02 | AC | 89 ms
12,032 KB |
testcase_03 | WA | - |
testcase_04 | AC | 95 ms
12,160 KB |
testcase_05 | WA | - |
testcase_06 | AC | 87 ms
12,160 KB |
testcase_07 | WA | - |
testcase_08 | AC | 87 ms
12,032 KB |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
number=gets.to_i def create_number(_counter) sum=0.to_i _counter.times do|i| sum+=10**i end return sum end puts (number%2==1)? create_number(number/2)+6 : create_number(number/2)