結果

問題 No.964 2020
ユーザー michonz4
提出日時 2020-01-14 20:48:54
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 134 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-26 08:42:43
合計ジャッジ時間 989 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main() {
  int n;
  scanf("%d", &n);
  for (int i=1; i<=n*n; i++) {
    printf("%d", i%n+1);
  }
  return 0;
}
0