結果
問題 | No.740 幻の木 |
ユーザー | greentea011 |
提出日時 | 2018-10-09 13:44:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 375 bytes |
コンパイル時間 | 933 ms |
コンパイル使用メモリ | 22,784 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 16:29:00 |
合計ジャッジ時間 | 843 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:14:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | scanf("%d %d %d %d",&m,&n,&p,&q); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int func(int m,int n,int p,int q,int now) { if (m < 0) return 1; else if (m == 0) return 0; else if ((now>=p)&&(now<=p+q)) return func(m-2*n,n,p,q,now%12+1)+1; else return func(m-n,n,p,q,now%12+1)+1; } int main(){ int m,n,p,q; scanf("%d %d %d %d",&m,&n,&p,&q); printf("%d\n", func(m,n,p,q,1)); return 0; }