Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137873 向运淇 06买鸡腿 C++ Accepted 1 MS 276 KB 146 2025-11-23 10:27:39

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int a,b,z=0; cin>>a>>b; z=b/a; z+=z/3; cout<<z; return 0; }