結果

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

ソースコード

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/children*1000);
}
0