結果

問題 No.2864 String of yuusaan
ユーザー FromBooskaFromBooska
提出日時 2024-09-02 22:18:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 53,680 KB
最終ジャッジ日時 2024-09-02 22:18:14
合計ジャッジ時間 2,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,084 KB
testcase_01 AC 37 ms
53,600 KB
testcase_02 WA -
testcase_03 AC 37 ms
53,060 KB
testcase_04 AC 38 ms
52,548 KB
testcase_05 AC 38 ms
52,748 KB
testcase_06 AC 36 ms
52,492 KB
testcase_07 WA -
testcase_08 AC 38 ms
52,796 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 38 ms
52,184 KB
testcase_11 AC 38 ms
53,132 KB
testcase_12 AC 37 ms
53,680 KB
testcase_13 WA -
testcase_14 AC 36 ms
51,812 KB
testcase_15 WA -
testcase_16 AC 37 ms
51,924 KB
testcase_17 AC 37 ms
52,444 KB
testcase_18 AC 36 ms
52,488 KB
testcase_19 AC 36 ms
52,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# y and nが、それぞれy and nになっていく、つまりy and nで1セットとすれば、2セット、4セット、8セットとなっていく
# それらの間はuusaaで変わらない

N, K = map(int, input().split())
#y_n = pow(2, N-1)

#print(y_n)

K1 = K-1
if K1%6 == 0:
    rnd = K1//6
    if rnd%2 == 0:
        ans = 'y'
    else:
        ans = 'n'
else:
    ans = 'yuuusaan'[K1%6]
print(ans)
0