結果
問題 |
No.445 得点
|
ユーザー |
![]() |
提出日時 | 2017-01-08 01:42:46 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 176 bytes |
コンパイル時間 | 129 ms |
コンパイル使用メモリ | 19,840 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 22:19:51 |
合計ジャッジ時間 | 843 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
コンパイルメッセージ
main.c: In function ‘run’: main.c:5:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d%d",&a,&b); | ^~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> void run(void){ int a,b; scanf("%d%d",&a,&b); int score=50*a+250*a/(4+b); printf("%d\n",score); return; } int main(void){ run(); return 0; }