結果

問題 No.128 お年玉(1)
ユーザー Himatsubushin
提出日時 2022-11-02 11:33:28
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 1,217 ms
コンパイル使用メモリ 26,368 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-16 18:28:35
合計ジャッジ時間 1,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main() {
    int money, people, n;

    scanf("%d", &money);
    scanf("%d", &people);

    money /= 1000;
    n = money / people;

    printf("%d", n * 1000);

    return 0;
}
0