結果

問題 No.353 ヘイトプラス
ユーザー Yasu_TsudaYasu_Tsuda
提出日時 2016-10-19 22:38:49
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 83 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 820,608 KB
最終ジャッジ日時 2024-05-02 05:50:17
合計ジャッジ時間 4,992 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

f,s = STDIN.gets.chomp.split(' ').map{|n| n.to_i}

p [*1..f].concat([*1..s]).length
0