結果

問題 No.128 お年玉(1)
ユーザー Maeda
提出日時 2025-03-07 15:13:21
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 24,448 KB
実行使用メモリ 8,608 KB
最終ジャッジ日時 2025-03-07 15:13:23
合計ジャッジ時間 1,796 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 3 WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

void main(void){
	int total = 0;
	int input = scanf("%d\n",&total);
	int children = 0;
	input = scanf("%d\n",&children);
	printf("%d",total/1000/children);
}
0