Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97848 吴梓玄 02买铅笔 C Accepted 1 MS 200 KB 169 2024-11-16 16:59:24

Tests(10/10):


Code:

#include <stdio.h> int main() { int a, b, c, d; scanf("%d%d%d%d",&a,&b,&c,&d); int e, f, s; e=10*a+b; f=10*c+d; s=f/e; printf("%d",s); return 0; }