結果
問題 | No.5000 特殊ジャッジテスト(テスト用) |
ユーザー | takux |
提出日時 | 2015-05-18 11:48:19 |
言語 | C90 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 129 bytes |
コンパイル時間 | 673 ms |
実行使用メモリ | 956 KB |
スコア | 0 |
最終ジャッジ日時 | 2018-03-12 00:00:58 |
ジャッジサーバーID (参考情報) |
judge7 / |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:6:5: warning: incompatible implicit declaration of built-in function ‘scanf’ [enabled by default] scanf("%d",&N); ^ main.c:11:5: warning: incompatible implicit declaration of built-in function ‘printf’ [enabled by default] printf("%d %d",A,B); ^
ソースコード
int main(){ int N,A,B; srand(1); scanf("%d",&N); A=rand(); B=N-A; printf("%d %d",A,B); }