結果

問題 No.485 方程式のお勉強
ユーザー nero11411
提出日時 2017-03-15 10:22:30
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 26,752 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-03 23:49:03
合計ジャッジ時間 780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 6 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void){
	int a,b;
	scanf("%d %d", &a, &b);

	printf("%d\n",b / a);
	return 0;
}
0