結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | つなぎ |
提出日時 | 2017-02-16 13:28:22 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 196 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 20,608 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 02:29:11 |
合計ジャッジ時間 | 671 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
6,812 KB |
testcase_01 | AC | 0 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 0 ms
6,940 KB |
testcase_05 | AC | 0 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 0 ms
6,944 KB |
testcase_11 | AC | 0 ms
6,940 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d",&a);//100 | ^~~~~~~~~~~~~~ main.c:6:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d",&b);//25 | ^~~~~~~~~~~~~~ main.c:7:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%d",&c);//1 | ^~~~~~~~~~~~~~
ソースコード
#include "stdio.h" int main(void) { int a,b,c,d=0; scanf("%d",&a);//100 scanf("%d",&b);//25 scanf("%d",&c);//1 b=b+c/25; c=c%25; a=a+b/4; b=b%4; d=a/10; a=a%10; printf("%d",a+b+c); return 0; }