#46352: chin love bee


1121226@stu.wghs.tp.edu.tw (Arthur✨EC)

學校 : 臺北市私立薇閣高級中學
編號 : 252772
來源 : [60.248.154.139]
最後登入時間 :
2025-08-21 12:59:45

#include<bits/stdc++.h>
using namespace std;
int main(){
    int a, b;
    while(cin>>a>>b){
        cout<<((a==0)?0 :
                    (a==1||a==3||a==4)?
                        ((b<10)?0:
                         (b<30)?(b-10)*3+1:
                         (b<70)?(b-10)*3+2:
                         (b<120)?(b-10)*3+3:
                         (b<=200)?(b-10)*3+6:0):
                    (a==2)?
                        ((b<8)?0:
                         (b<30)?(b-8)*3+1:
                         (b<70)?(b-8)*3+2:
                         (b<120)?(b-8)*3+3:
                         (b<=200)?(b-8)*3+6:0):0)<<endl;
    }
    return 0;
}