結果

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

ソースコード

diff #

#include <stdio.h>

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

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

    money /= 1000;
    n = money / people;

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

    return 0;
}
0