結果
| 問題 | No.3623 2-Letter Shiritori 2 |
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2026-08-14 21:31:30 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 278 bytes |
| 記録 | |
| コンパイル時間 | 595 ms |
| コンパイル使用メモリ | 95,468 KB |
| 実行使用メモリ | 78,772 KB |
| 最終ジャッジ日時 | 2026-08-14 21:31:32 |
| 合計ジャッジ時間 | 1,142 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
def code(s):
return ord(s)-ord("A")
def codeR(n):
return chr(ord("A")+n)
ans = []
for i in range(1, 26):
for j in range(26):
if i == 1:
ans.append(codeR(j)+codeR(j))
ans.append(codeR(j*i%26)+codeR((j+1)*i%26))
for a in ans:
print(a)
detteiuu