結果
問題 | No.858 わり算 |
ユーザー | kikage |
提出日時 | 2020-03-24 14:44:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 224 bytes |
コンパイル時間 | 117 ms |
コンパイル使用メモリ | 23,296 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 05:54:39 |
合計ジャッジ時間 | 844 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 0 ms
5,376 KB |
testcase_08 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:5:14: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long int’ [-Wformat=] 5 | printf("%d.",A/B);r=(A%B)*10; | ~^ ~~~ | | | | int long int | %ld main.cpp:7:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long int’ [-Wformat=] 7 | printf("%d",r/B); | ~^ ~~~ | | | | int long int | %ld main.cpp:4:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 4 | scanf("%ld %ld",&A,&B); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <cstdio> int main(){ long int A,B,r; scanf("%ld %ld",&A,&B); printf("%d.",A/B);r=(A%B)*10; for(int i=0;i<50;i++){ printf("%d",r/B); r=(r%B)*10; } printf("\n"); return 0; }