結果

問題 No.2864 String of yuusaan
ユーザー 寝癖寝癖
提出日時 2024-07-06 20:25:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 53,500 KB
最終ジャッジ日時 2024-07-08 22:08:17
合計ジャッジ時間 1,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,616 KB
testcase_01 AC 39 ms
51,940 KB
testcase_02 AC 38 ms
53,076 KB
testcase_03 AC 39 ms
52,244 KB
testcase_04 AC 38 ms
53,008 KB
testcase_05 AC 39 ms
52,620 KB
testcase_06 AC 39 ms
52,732 KB
testcase_07 AC 38 ms
53,144 KB
testcase_08 AC 39 ms
52,572 KB
testcase_09 AC 38 ms
52,556 KB
testcase_10 AC 39 ms
52,800 KB
testcase_11 AC 38 ms
53,272 KB
testcase_12 AC 39 ms
52,684 KB
testcase_13 AC 38 ms
52,736 KB
testcase_14 AC 38 ms
52,192 KB
testcase_15 AC 39 ms
52,076 KB
testcase_16 AC 39 ms
53,500 KB
testcase_17 AC 39 ms
52,476 KB
testcase_18 AC 40 ms
52,340 KB
testcase_19 AC 39 ms
52,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
K = (K-1) % 12

T = 'yuusaan'

if N > 1:
    T += 'uusaa'
    
print(T[K])
0