結果
問題 | No.842 初詣 |
ユーザー | subsn |
提出日時 | 2023-06-16 14:34:25 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 953 bytes |
コンパイル時間 | 127 ms |
コンパイル使用メモリ | 29,696 KB |
実行使用メモリ | 13,752 KB |
最終ジャッジ日時 | 2024-06-24 07:57:54 |
合計ジャッジ時間 | 3,569 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,752 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include <stdio.h> int main() { int c_500, c_100, c_50, c_10, c_5, c_1,p; scanf("%d%d%d%d%d%d%d",&c_500,&c_100,&c_50,&c_10,&c_5,&c_1,&p); for (;;) { if (c_500 == 0 || !p) break; if (p > 499) { c_500--; p-=500; } } for (;;) { if (c_100 == 0 || !p) break; if (p > 99) { c_100--; p -= 100; } } for (;;) { if (c_50 == 0 || !p) break; if (p > 49) { c_50--; p -= 50; } } for (;;) { if (c_10 == 0 || !p) break; if (p > 9) { c_10--; p -= 10; } } for (;;) { if (c_5 == 0 || !p) break; if (p > 4) { c_5--; p -= 5; } } for (;;) { if (c_1 == 0 || !p) break; if (p > 0) { c_1--; p -= 1; } } p?puts("NO"):puts("YES"); }