結果
問題 | No.607 開通777年記念 |
ユーザー | Mr.Fuku |
提出日時 | 2018-08-04 13:42:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 438 bytes |
コンパイル時間 | 228 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 16,256 KB |
最終ジャッジ日時 | 2024-09-19 17:48:39 |
合計ジャッジ時間 | 4,538 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
16,000 KB |
testcase_01 | AC | 27 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 29 ms
10,624 KB |
testcase_04 | AC | 29 ms
10,624 KB |
testcase_05 | AC | 28 ms
10,752 KB |
testcase_06 | AC | 28 ms
10,624 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
n,m = map(int,input().split()) train = [0]*n for i in range(m): cst = list(map(int,input().split())) for j in range(n): train[j] += cst[j] for j in range(n): sum_c = 0 for l in range(j,n): sum_c+=train[l] if sum_c<777: continue elif sum_c==777: print("YES") exit(0) else: break print("NO")