結果
問題 | No.128 お年玉(1) |
ユーザー |
![]() |
提出日時 | 2016-02-04 13:41:53 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 155 bytes |
コンパイル時間 | 693 ms |
コンパイル使用メモリ | 20,096 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 10:14:10 |
合計ジャッジ時間 | 751 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:6:16: warning: format ‘%d’ expects argument of type ‘int *’, but argument 3 has type ‘long long int *’ [-Wformat=] 6 | scanf("%lld %d",&n,&m); | ~^ ~~ | | | | int * long long int * | %lld main.c:6:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%lld %d",&n,&m); | ^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h>int main(void){long long int n;long long int m;scanf("%lld %d",&n,&m);printf("%lld\n",(n/(1000*m))*1000);return 0;}