結果
問題 | No.29 パワーアップ |
ユーザー | takosama |
提出日時 | 2017-12-26 15:15:29 |
言語 | Text (cat 8.3) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,242 bytes |
コンパイル時間 | 175 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-10 03:26:25 |
合計ジャッジ時間 | 811 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <string> #include <vector> //.h file code: #include <string> #include <vector> #include <iostream> namespace yukicore { class Program { //29 private: private: static void Main(std::vector<std::wstring> &args); }; } //stringhelper.h: //---------------------------------------------------------------------------------------- // Copyright c 2004 - 2017 Tangible Software Solutions Inc. // This class can be used by anyone provided that the copyright notice remains intact. // // This class is used to replace some string methods, including // conversions to or from strings. //---------------------------------------------------------------------------------------- #include <string> #include <sstream> #include <vector> class StringHelper { public: public: private: static std::wstring toLower(const std::wstring &source); static std::wstring toUpper(const std::wstring &source); //C# TO C++ CONVERTER TODO TASK: The following line could not be converted: static std::wstring trimStart(std::wstring source, const std::wstring &trimChars = LL" \t\n\r\v\f") //C# TO C++ CONVERTER TODO TASK: The following line could not be converted: static std::wstring trimEnd(std::wstring source, const std::wstring &trimChars = LL" \t\n\r\v\f") //C# TO C++ CONVERTER TODO TASK: The following line could not be converted: static std::wstring trim(std::wstring source, const std::wstring &trimChars = LL" \t\n\r\v\f") static std::wstring replace(const std::wstring &source, const std::wstring & *find, const std::wstring & *replace); static bool startsWith(const std::wstring & *source, const std::wstring & *value); static bool endsWith(const std::wstring & *source, const std::wstring & *value); static bool isEmptyOrWhiteSpace(const std::wstring & *source); static std::vector<std::wstring> split(const std::wstring & *source, wchar_t_Renamed *delimiter); template_Renamed<typename_Renamed T> static std::wstring toString(const T & *subject); template_Renamed<typename_Renamed T> static T *fromString(const std::wstring & *subject); }; //.cpp file code: namespace yukicore { //C# TO C++ CONVERTER TODO TASK: The following line could not be converted: void Program::Main(std::vector<std::wstring> &args) }