結果
| 問題 | No.1455 拡張ROTN |
| コンテスト | |
| ユーザー |
shiomusubi496
|
| 提出日時 | 2021-03-31 01:44:49 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 134 bytes |
| 記録 | |
| コンパイル時間 | 431 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-05-24 22:23:53 |
| 合計ジャッジ時間 | 4,124 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 22 |
ソースコード
S=input()
N=int(input())
assert 1<=len(S)<=100
assert 0<=N<=10**18
for i in S:
assert i.islower() or i.isupper() or 48<=ord(i)<=57
shiomusubi496