結果

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

ソースコード

diff #

#include <stdio.h>

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