首页 > 网易互娱笔试编程第三题,cases通过0%,求大佬指教!
头像
松树上的猫
编辑于 2020-09-05 17:34
+ 关注

网易互娱笔试编程第三题,cases通过0%,求大佬指教!

用了一个自认为很简单的方法写的,测试用例打印出来看起来没问题。
#coding=utf-8
import sys
if __name__ == "__main__":
    # 读取第一行的n
    T = int(sys.stdin.readline().strip())
    list_answers =[]
    for i in range(T):
        # T 组数据
        # 读取每一行
        N = int(sys.stdin.readline().strip())
        count_up    = 0
        count_down  = 0
        count_left  = 0
        count_right = 0
        for j in range(N):
            line = sys.stdin.readline().strip()
            direction, if_succeed = line.split()
            if if_succeed == '1' and direction == '0':
                count_up = count_up+1
            if if_succeed == '1' and direction == '1':
                count_down = count_down+1
            if if_succeed == '1' and direction == '2':
                count_left = count_left+1
            if if_succeed == '1' and direction == '3':
                count_right = count_right+1
        print(abs(count_up-count_down)+abs(count_left-count_right))


全部评论

(2) 回帖
加载中...
话题 回帖

相关热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐