結果
問題 | No.740 幻の木 |
ユーザー |
|
提出日時 | 2022-02-18 13:35:03 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 280 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 82,564 KB |
実行使用メモリ | 59,748 KB |
最終ジャッジ日時 | 2024-06-29 08:03:24 |
合計ジャッジ時間 | 1,066 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
n,m,p,q = map(int,input().split())month = list(range(1,13))target = list(range(p,p+q))index = 0count=0while n>0:#print(index)now_m = month[index]if now_m in target:n-=2*melse:n-=mindex+=1index%=12count+=1print(count)