結果
問題 | No.561 東京と京都 |
ユーザー | naimonon77 |
提出日時 | 2018-02-12 19:44:02 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,130 bytes |
コンパイル時間 | 302 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-11-25 00:58:32 |
合計ジャッジ時間 | 1,752 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
11,008 KB |
testcase_01 | AC | 29 ms
11,008 KB |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 32 ms
10,880 KB |
testcase_04 | AC | 29 ms
11,008 KB |
testcase_05 | AC | 30 ms
11,008 KB |
testcase_06 | AC | 29 ms
10,880 KB |
testcase_07 | AC | 28 ms
11,008 KB |
testcase_08 | AC | 28 ms
10,880 KB |
testcase_09 | WA | - |
testcase_10 | AC | 28 ms
11,136 KB |
testcase_11 | WA | - |
testcase_12 | AC | 28 ms
11,136 KB |
testcase_13 | AC | 28 ms
11,136 KB |
testcase_14 | AC | 29 ms
11,008 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
import random def does_change(cur_place, cur_day): # if (money[cur_day][cur_place] >= money[cur_day][not cur_place]): # print("money[cur_day][cur_place]:", money[cur_day][cur_place]) # print("money[cur_day][not cur_place]:", money[cur_day][not cur_place]) # print("!") # return False a = 0 b = - 2 * D for i in range(cur_day, N): a += money[i][cur_place] b += money[i][not cur_place] #print("a:", a, "b:", b) #print("i:", i) if (a < b): return True #print("a:", a, "b:", b) if (a < b + D): return True else: return False N, D = map(int, input().split()) money = [list(map(int, input().split())) for i in range(N)] #T = [0 for i in range(N)] #K = [0 for i in range(N)] #for i in range(N): # T[i], K[i] = map(int, input().split()) # for i in range(N): # print(money[i][0], money[i][not 0]) cur_place = 0 cur_v = 0 for i in range(N): if (does_change(cur_place, i)): cur_place = not cur_place cur_v -= D # print("cur_place:", int(cur_place)) cur_v += money[i][cur_place] print(cur_v)