結果
| 問題 | No.2864 String of yuusaan |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-08-30 22:30:05 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 211 bytes |
| 記録 | |
| コンパイル時間 | 382 ms |
| コンパイル使用メモリ | 85,760 KB |
| 実行使用メモリ | 52,224 KB |
| 最終ジャッジ日時 | 2026-04-03 23:43:20 |
| 合計ジャッジ時間 | 3,524 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge5_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | AC * 1 WA * 18 |
ソースコード
import os, sys
if os.path.exists("input.txt"):
sys.stdin = open('input.txt', 'r')
N, K = map(int, input().split())
if K <= 7:
K -= 1
print('yuusaan'[K])
else:
K -= 6
K %= 12
print('uusaayuusaan'[K])