結果

問題 No.701 ひとりしりとり
ユーザー tailstails
提出日時 2020-11-01 01:25:19
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 28,928 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-22 05:33:45
合計ジャッジ時間 880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:2:1: warning: return type defaults to 'int' [-Wimplicit-int]
    2 | main(){
      | ^~~~
main.c: In function 'main':
main.c:4:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
    4 |         scanf("%d",&n);
      |         ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
  +++ |+#include <stdio.h>
    1 | long wbuf[100000];
main.c:4:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
    4 |         scanf("%d",&n);
      |         ^~~~~
main.c:4:9: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:23:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   23 |         write(1,wbuf,n*8);
      |         ^~~~~

ソースコード

diff #

long wbuf[100000];
main(){
	int n;
	scanf("%d",&n);
	long j=0x0a61616161616161l;
	for(int i=0;i<n-1;++i){
		wbuf[i]=j;
		j+=1<<8;
		if(j&1<<12){
			j+=(1l<<16)-(1l<<12)+(1l<<8);
			if(j&1<<20){
				j+=(1l<<24)-(1l<<20)+(1l<<16);
				if(j&1l<<28){
					j+=(1l<<32)-(1l<<28)+(1l<<24);
					if(j&1l<<36){
						j+=(1l<<40)-(1l<<36)+(1l<<32);
					}
				}
			}
		}
	}
	wbuf[n-1]=0x0a6e616161616161l;
	write(1,wbuf,n*8);
}
0