P1085 [NOIP2004 普及组] 不高兴的津津

C++

#include 
using namespace std;
int main ()
{
    int a[25]={0};
    int b,c;
    for(int i=1;i<8;i++)
    {
        scanf("%d %d",&b,&c);
        int temp = b+c;
        if(a[temp]==0)
        {
            a[temp]=i;
        }
    }
    for(int i=24;i>0;i--)
    {
        if(a[i]!=0)
        {
            if (i>8)
                cout<

Python

import numpy as np
tt =np.zeros(25)
for i in range(1,8):
    temp = input().split(" ")
    t = int(temp[0])+int(temp[1])
    if tt[t]==0:
        tt[t]=i

for j in range(24,0,-1):
    if tt[j]!=0:
        if j > 8:
            print(int(tt[j]))
        else:
            print(0)
        break

你可能感兴趣的:(洛谷,python,算法,numpy)