結果
| 問題 | No.5000 特殊ジャッジテスト(テスト用) |
| ユーザー |
|
| 提出日時 | 2018-06-07 16:48:54 |
| 言語 | C90(gcc12) (gcc 12.4.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 72 bytes |
| 記録 | |
| コンパイル時間 | 98 ms |
| コンパイル使用メモリ | 27,592 KB |
| 実行使用メモリ | 7,844 KB |
| スコア | 100 |
| 最終ジャッジ日時 | 2026-03-08 16:16:59 |
| 合計ジャッジ時間 | 504 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:1:22: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch]
1 | main(){long long a,b;scanf("%lld%lld",&a,&b);printf("%lld %lld",0,a+b);}
| ^~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
+++ |+#include <stdio.h>
1 | main(){long long a,b;scanf("%lld%lld",&a,&b);printf("%lld %lld",0,a+b);}
main.c:1:46: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
1 | main(){long long a,b;scanf("%lld%lld",&a,&b);printf("%lld %lld",0,a+b);}
| ^~~~~~
main.c:1:46: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
main.c:1:57: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 2 has type ‘int’ [-Wformat=]
1 | main(){long long a,b;scanf("%lld%lld",&a,&b);printf("%lld %lld",0,a+b);}
| ~~~^ ~
| | |
| | int
| long long int
| %d
ソースコード
main(){long long a,b;scanf("%lld%lld",&a,&b);printf("%lld %lld",0,a+b);}