結果

問題 No.3722 Blended Taste
コンテスト
ユーザー Lemona
提出日時 2026-09-19 13:47:25
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.92.0 + ACL)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 31 ms / 2,000 ms
+ 179µs
コード長 1,134 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,962 ms
コンパイル使用メモリ 349,652 KB
実行使用メモリ 10,024 KB
最終ジャッジ日時 2026-09-19 13:47:59
合計ジャッジ時間 7,106 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
using namespace std;

#define rep(i,n) for (int i=0; i<(n); ++i)
#define nall(a) a.begin(),a.end()
#define rall(a) a.rbegin(),a.rend()
#define Yes cout << "Yes" << endl
#define No cout << "No" << endl

template<typename T,typename U>inline bool chmax(T&a,U b){if(a<b){a=b;return 1;}return 0;}
template<typename T,typename U>inline bool chmin(T&a,U b){if(a>b){a=b;return 1;}return 0;}

using ll = long long;
using ull = unsigned long long;
using P = pair<ll,ll>;

const int inf = (1e9);
const ll INF = (1e18)+(1e9);
const ll dx[] = {0,1,0,-1,1,1,-1,-1};
const ll dy[] = {1,0,-1,0,1,-1,1,-1};

//#include <atcoder/all>
//using namespace atcoder;

//using mint = modint998244353;

int testcase(){
    ll n,m,k; cin >> n >> m >> k;
    ll s = 1;
    for(ll i=1; i<=n; i++){
        for(ll j=s; j<n+s; j++){
            if(j%m) cout << j%m << ' ';
            else cout << m << ' ';
        }
        cout << endl;
        s+=k;
        s%=n;
    }
    return 0;
}

int main(){
    ios::sync_with_stdio(false); 
    cin.tie(nullptr);

    //int t=1;
    //cin >> t;
    //while(t--)
    testcase();

    return 0;
}
0