結果
問題 |
No.485 方程式のお勉強
|
ユーザー |
![]() |
提出日時 | 2017-04-07 09:37:23 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 109 bytes |
コンパイル時間 | 500 ms |
コンパイル使用メモリ | 26,880 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-16 00:23:42 |
合計ジャッジ時間 | 952 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 4 |
other | WA * 13 |
ソースコード
#include<stdio.h> int main(void){ int A, B; if(B%A)printf("-1\n"); else printf("%d\n", B/A); return 0; }