結果
問題 | No.607 開通777年記念 |
ユーザー | horotyu |
提出日時 | 2021-01-12 02:04:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 403 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,760 KB |
最終ジャッジ日時 | 2024-11-21 09:33:21 |
合計ジャッジ時間 | 10,520 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
ソースコード
n, m = list(map(int, input().split())) l = [0 for _ in range(n)] f = False for i in range(m): l_i = [int(i) for i in input().split()] l = [(l[b] + l_i[b]) for b in range(n)] for j in range(n - 1): num = l[j] for k in range(1, n): num += l[k] if num == 777: f = True break if f: print('Yes') else: print('No')