3 条题解

  • 1
    @ 2023-09-23 17:13:58

    我们好像在哪见过。。。

    a=input()
    if int(a)>2017 :
        print("1 80")
    elif int(a)>2007 :
        print("2 400")
    else :
        print("3 800")
    
  • 1
    @ 2020-05-31 16:26:46
    import math
    y=int(input())
    if y>2017:
        p=800*0.1
        f=math.floor(p)
        print(1,f)
    elif (2008<y<=2017):
        p=800*0.5
        f=math.floor(p)
        print(2,f)
    else:
        p=800
        print(3,p)
    
  • 0
    @ 2023-06-19 21:05:46
    import math
    a=eval(input())
    b=2019-a
    c=800
    if b<2:
        c=c/10
        c=math.floor(c)
        print(1 ,c)
    elif 2<=b<12:
        c=c/2
        c=math.floor(c)
        print(2 ,c)
    else:
        print(3 ,c)
    
  • 1

信息

ID
1013
难度
8
分类
(无)
标签
(无)
递交数
402
已通过
51
通过率
13%
被复制
1
上传者