結果

問題 No.128 お年玉(1)
ユーザー piyoko_212piyoko_212
提出日時 2015-12-28 22:57:03
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 33,360 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-01 10:11:44
合計ジャッジ時間 1,004 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:28: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         long long a,b;scanf("%lld%lld",&a,&b);
      |                       ~~~~~^~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<algorithm>
using namespace std;
int main(){
	long long a,b;scanf("%lld%lld",&a,&b);
	a/=b;
	a-=a%1000;
	printf("%lld\n",a);
}
0