結果
問題 |
No.740 幻の木
|
ユーザー |
![]() |
提出日時 | 2018-10-09 13:44:48 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 375 bytes |
コンパイル時間 | 933 ms |
コンパイル使用メモリ | 22,784 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 16:29:00 |
合計ジャッジ時間 | 843 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 2 WA * 4 |
コンパイルメッセージ
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; }