結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | convexineq |
提出日時 | 2021-01-31 17:49:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,311 bytes |
コンパイル時間 | 413 ms |
コンパイル使用メモリ | 82,188 KB |
実行使用メモリ | 76,032 KB |
最終ジャッジ日時 | 2024-06-29 02:25:11 |
合計ジャッジ時間 | 3,875 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 60 ms
75,848 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 34 ms
53,080 KB |
testcase_05 | RE | - |
testcase_06 | AC | 35 ms
52,528 KB |
testcase_07 | AC | 33 ms
54,292 KB |
testcase_08 | WA | - |
testcase_09 | AC | 33 ms
52,400 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 37 ms
52,260 KB |
testcase_13 | AC | 37 ms
53,572 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 34 ms
53,496 KB |
testcase_17 | AC | 34 ms
52,632 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 33 ms
53,040 KB |
testcase_22 | AC | 32 ms
52,964 KB |
testcase_23 | AC | 33 ms
52,980 KB |
testcase_24 | WA | - |
ソースコード
t,a,b = map(int,input().split()) if t < max(a,b): print("NO") exit() print("YES") d = dict(zip(range(8),[">",">^","^","^<","<","<v","v","v>",])) def f(a,b): if a>0 and b==0: return 0 if a>0 and b>0: return 1 if a==0 and b>0: return 2 if a<0 and b>0: return 3 if a<0 and b==0: return 4 if a<0 and b<0: return 5 if a==0 and b<0: return 6 if a>0 and b<0: return 7 if a==b==0: return 8 while t > 2: if a >= 0 and b >= 0: c = f(a,b) print(d[c%8]) if a < 0: a += 1 elif a > 0: a -= 1 if b < 0: b += 1 elif b > 0: b -= 1 if c==8: a -= 1 t -= 1 if t==2: c = -1 if a==1 and b==0: c = 2 b -= 1 elif a==1 and b>0: c = 0 a -= 1 elif a==0 and b==1: c = 0 a -= 1 elif a==-1 and b==1: c = 2 b -= 1 elif a==-1 and b==0: c = 2 b -= 1 elif a==-1 and b==-1: c = 6 b += 1 elif a==0 and b==-1: c = 0 a -= 1 elif a==1 and b==-1: c = 0 a -= 1 else: c = f(a,b) if a < 0: a += 1 elif a > 0: a -= 1 if b < 0: b += 1 elif b > 0: b -= 1 if c==8: a -= 1 #print(c) print(d[c%8]) print(d[f(a,b)])