結果
| 問題 | No.3722 Blended Taste |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-19 13:38:51 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 44 ms / 2,000 ms |
| + 338µs | |
| コード長 | 241 bytes |
| 記録 | |
| コンパイル時間 | 2,814 ms |
| コンパイル使用メモリ | 351,556 KB |
| 実行使用メモリ | 10,008 KB |
| 最終ジャッジ日時 | 2026-09-19 13:39:10 |
| 合計ジャッジ時間 | 7,037 ms |
|
ジャッジサーバーID (参考情報) |
judge7_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 41 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,m,k;cin>>n>>m>>k;
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
int cur=i*k+j;
cout<<(cur%m)+1<<" ";
}
cout<<endl;
}
}