結果
問題 |
No.29 パワーアップ
|
ユーザー |
|
提出日時 | 2017-12-26 15:15:29 |
言語 | Text (cat 8.3) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,242 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 6,948 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-18 00:16:37 |
合計ジャッジ時間 | 1,074 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 22 |
ソースコード
#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) }