結果

問題 No.254 文字列の構成
ユーザー krotonkroton
提出日時 2015-07-15 11:05:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 489,904 KB
最終ジャッジ日時 2024-07-08 08:03:11
合計ジャッジ時間 25,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 773 ms
489,700 KB
testcase_01 AC 785 ms
489,736 KB
testcase_02 AC 779 ms
489,676 KB
testcase_03 AC 780 ms
489,744 KB
testcase_04 AC 778 ms
489,728 KB
testcase_05 AC 784 ms
489,728 KB
testcase_06 AC 783 ms
489,748 KB
testcase_07 AC 780 ms
489,692 KB
testcase_08 AC 787 ms
489,728 KB
testcase_09 AC 781 ms
489,728 KB
testcase_10 AC 780 ms
489,816 KB
testcase_11 AC 778 ms
489,692 KB
testcase_12 AC 779 ms
489,728 KB
testcase_13 AC 789 ms
489,680 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 OLE -
testcase_17 OLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |   scanf("%d", &N);
      |   ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <cstdio>
using namespace std;

const int BUFSIZE = 500000020;
char buf[BUFSIZE+1];

int main(){
  for(int i=0;i<BUFSIZE;i++){
    buf[i] = (i % 26) + 'a'; 
  }
  buf[BUFSIZE] = '\0';

  int N;
  scanf("%d", &N);

  while(N >= BUFSIZE){
    printf("%s", buf);
    N -= BUFSIZE;
  }
  
  for(int i=0;i<N;i++){
    buf[i] = (i % 26) + 'a';
  }
  buf[N] = '\0';
  printf("%s", buf);

  return 0;
}
0