結果

問題 No.232 めぐるはめぐる (2)
ユーザー rpy3cpprpy3cpp
提出日時 2015-06-26 23:20:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 114 ms / 1,000 ms
コード長 997 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-09-14 12:32:44
合計ジャッジ時間 2,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
16,512 KB
testcase_01 AC 114 ms
16,384 KB
testcase_02 AC 112 ms
16,512 KB
testcase_03 AC 113 ms
16,640 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 87 ms
14,976 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 32 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T, A, B = map(int, input().split())

def solve(T, A, B):
    if abs(A) > T or abs(B) > T:
        return False
    U, S1, D = convert(A, T)
    R, S2, L = convert(B, T)
    if S1 == 1 and S2 == 1 and T == 1:
        return False
    UD = '^' * U + 'v' * D + ' ' * S1
    RL = ' ' * S2 + '>' * R + '<' * L
    return [ud + rl for ud, rl in zip(UD, RL)]
    

def convert(A, T):
    '''T 個の 1, 0, -1 の和として、Aをあらわす。
    できるだけ、0 が少なくなるようにする。
    a + b + c = T
    a     - c = A
    a, b, c は 0 以上 T 以下の整数 をみたす、a, b, c を求めればよい。
    c = a - A
    と書けるので、
    a + b + c = a + b + a - A = 2 * a + b - A = T
    2 * a + b = A + T
    b = A + T - 2 * a
    
    T >= a - A >= 0 -> a >= A
    
    '''
    a, b =  divmod(A + T, 2)
    c = a - A
    return   a, b, c

ans = solve(T, A, B)
if not ans:
    print('NO')
else:
    print('YES')
    for move in ans:
        print(move.strip())
0