結果
| 問題 | No.509 塗りつぶしツール |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-10-09 23:18:03 |
| 言語 | C90(gcc12) (gcc 12.4.0) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 110 bytes |
| 記録 | |
| コンパイル時間 | 90 ms |
| コンパイル使用メモリ | 29,256 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-03-08 16:14:27 |
| 合計ジャッジ時間 | 786 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 27 |
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class
1 | d[]={1,0,0,0,1,0,1,0,2,1};n,a;
| ^
main.c:1:27: warning: data definition has no type or storage class
1 | d[]={1,0,0,0,1,0,1,0,2,1};n,a;
| ^
main.c: In function ‘main’:
main.c:2:47: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
2 | main(h){for(;read(0,&a,1),a-10;n++)h+=d[a-48];printf("%.f",fmin(n*2+h,h*2+n));}
| ^~~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
+++ |+#include <stdio.h>
1 | d[]={1,0,0,0,1,0,1,0,2,1};n,a;
main.c:2:57: warning: format ‘%f’ expects argument of type ‘double’, but argument 2 has type ‘int’ [-Wformat=]
2 | main(h){for(;read(0,&a,1),a-10;n++)h+=d[a-48];printf("%.f",fmin(n*2+h,h*2+n));}
| ~~^ ~~~~~~~~~~~~~~~~~
| | |
| | int
| double
| %.d
ソースコード
d[]={1,0,0,0,1,0,1,0,2,1};n,a;
main(h){for(;read(0,&a,1),a-10;n++)h+=d[a-48];printf("%.f",fmin(n*2+h,h*2+n));}