結果

問題 No.445 得点
ユーザー hiro_metal_core
提出日時 2018-01-12 18:40:17
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 22,272 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 03:35:56
合計ジャッジ時間 661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%d %d", &A, &B);
      |     ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<cstdio>
using namespace std;

int main()
{
    int A, B;
    scanf("%d %d", &A, &B);
    int ans = 50*A + int(250*A/(4+B));

    printf("%d\n", ans);

    return 0;
}
0