結果
| 問題 | No.1732 ~サンプルはちゃんと見て!~ 16進数と8進数(2) |
| コンテスト | |
| ユーザー |
H20
|
| 提出日時 | 2021-10-24 16:37:13 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 167 bytes |
| 記録 | |
| コンパイル時間 | 64 ms |
| コンパイル使用メモリ | 81,428 KB |
| 実行使用メモリ | 57,096 KB |
| 最終ジャッジ日時 | 2026-09-19 16:35:22 |
| 合計ジャッジ時間 | 1,261 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 1 WA * 2 |
ソースコード
T = int(input())
S = 'GCcabcceacccccabebdccc'*10
for _ in range(T):
N = int(input())
if (N%21)%5==0:
print(S[len(S)-N::])
else:
print('-2')
H20