結果
| 問題 | No.237 作図可能性 |
| コンテスト | |
| ユーザー |
testestest
|
| 提出日時 | 2016-03-08 21:58:24 |
| 言語 | C90(gcc12) (gcc 12.4.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 109 bytes |
| 記録 | |
| コンパイル時間 | 43 ms |
| コンパイル使用メモリ | 28,800 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-24 07:52:35 |
| 合計ジャッジ時間 | 5,451 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 28 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:1:74: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
1 | f(a,b){return b?f(a,b-1)+f(a/((1<<(1<<b))+1),--b):a?log2(a)+1:0;}main(n){printf("%d",f(atoi(gets(&n)),5)-2);}
| ^~~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
+++ |+#include <stdio.h>
1 | f(a,b){return b?f(a,b-1)+f(a/((1<<(1<<b))+1),--b):a?log2(a)+1:0;}main(n){printf("%d",f(atoi(gets(&n)),5)-2);}
/usr/bin/ld: /tmp/cccioSyY.o: in function `main':
main.c:(.text.startup+0x14): 警告: the `gets' function is dangerous and should not be used.
ソースコード
f(a,b){return b?f(a,b-1)+f(a/((1<<(1<<b))+1),--b):a?log2(a)+1:0;}main(n){printf("%d",f(atoi(gets(&n)),5)-2);}
testestest