結果
問題 | No.378 名声値を稼ごう |
ユーザー | 👑 testestest |
提出日時 | 2016-06-17 22:40:30 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 95 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 19,968 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 13:54:41 |
合計ジャッジ時間 | 535 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.c:2:8: warning: return type defaults to ‘int’ [-Wimplicit-int] 2 | long n;main(){n=scanf("%lld",&n)>printf("%d",f(n)+f(n>>32));} | ^~~~ main.c: In function ‘main’: main.c:2:17: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration] 2 | long n;main(){n=scanf("%lld",&n)>printf("%d",f(n)+f(n>>32));} | ^~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ +++ |+#include <stdio.h> 1 | #define f(n)__builtin_popcount(n) main.c:2:17: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch] 2 | long n;main(){n=scanf("%lld",&n)>printf("%d",f(n)+f(n>>32));} | ^~~~~ main.c:2:17: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ main.c:2:27: warning: format ‘%lld’ expects argument of type ‘long long int *’, but argument 2 has type ‘long int *’ [-Wformat=] 2 | long n;main(){n=scanf("%lld",&n)>printf("%d",f(n)+f(n>>32));} | ~~~^ ~~ | | | | | long int * | long long int * | %ld main.c:2:34: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration] 2 | long n;main(){n=scanf("%lld",&n)>printf("%d",f(n)+f(n>>32));} | ^~~~~~ main.c:2:34: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’ main.c:2:34: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch] main.c:2:34: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
ソースコード
#define f(n)__builtin_popcount(n) long n;main(){n=scanf("%lld",&n)>printf("%d",f(n)+f(n>>32));}