結果
問題 | No.2399 This Is Truly Final Edition |
ユーザー | Flkanjin |
提出日時 | 2023-10-02 05:27:26 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,930 bytes |
コンパイル時間 | 1,934 ms |
コンパイル使用メモリ | 184,932 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-26 13:35:41 |
合計ジャッジ時間 | 2,390 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
ソースコード
#include <algorithm> #include <array> #include <bit> #include <bitset> #include <cassert> #include <cctype> #include <chrono> #include <climits> #include <clocale> #include <cmath> #include <complex> #include <concepts> #include <cstdio> #include <cstdlib> #include <ctime> #include <deque> #include <fstream> #include <functional> #include <iomanip> #include <iostream> #include <iterator> #include <limits> #include <list> #include <map> #include <numbers> #include <numeric> #include <queue> #include <random> #include <ranges> #include <regex> #include <set> #include <sstream> #include <stack> #include <string> #include <tuple> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> constexpr int MOD{1'000'000'007}; constexpr int MOD2{998'244'353}; constexpr int INF{1'000'000'000}; //1e9 constexpr int NIL{-1}; constexpr long long LINF{1'000'000'000'000'000'000}; // 1e18 constexpr long double EPS{1E-10L}; using namespace std::literals; template<class T, class S> bool chmax(T &a, const S &b){ if(a < b){a = b; return true;} return false; } template<class T, class S> bool chmin(T &a, const S &b){ if(b < a){a = b; return true;} return false; } template<class T> bool inside(T x, T lx, T rx){ //semi-open return (std::ranges::clamp(x, lx, rx-1) == x); } template<class T> bool inside(T x, T y, T lx, T rx, T ly, T ry){ return inside(x, lx, rx) && inside(y, ly, ry); } template<class T> void print_vec(std::vector<T> &v, std::string sep = " "s, std::string end = "\n"s){ std::ranges::copy(v | std::views::reverse | std::views::drop(1) | std::views::reverse, std::ostream_iterator<T>(std::cout, sep.c_str())); if(!v.empty()) std::cout << v.back(); std::cout << end; } int main(){ std::string S, T; std::cin >> S >> T; int N; std::cin >> N; std::cout << S; while(N--) std::cout << "_" << T; std::cout << std::endl; return 0; }