結果
| 問題 |
No.485 方程式のお勉強
|
| コンテスト | |
| ユーザー |
bal4u
|
| 提出日時 | 2019-04-17 05:42:42 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 201 bytes |
| コンパイル時間 | 124 ms |
| コンパイル使用メモリ | 27,648 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-22 08:26:25 |
| 合計ジャッジ時間 | 728 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 13 |
ソースコード
// yukicoder: No.485 方程式のお勉強
// 2019.4.17 bal4u
#include <stdio.h>
int main()
{
int A, B;
scanf("%d%d", &A, &B);
if (B % A == 0) printf("%d\n", B / A);
else puts("NO");
return 0;
}
bal4u