結果
| 問題 | No.3497 Sign up for traP |
| コンテスト | |
| ユーザー |
hir355
|
| 提出日時 | 2026-04-18 20:48:09 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 41 ms / 2,000 ms |
| + 874µs | |
| コード長 | 285 bytes |
| 記録 | |
| コンパイル時間 | 242 ms |
| コンパイル使用メモリ | 80,640 KB |
| 実行使用メモリ | 67,456 KB |
| 最終ジャッジ日時 | 2026-09-08 21:33:16 |
| 合計ジャッジ時間 | 2,318 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
from string import ascii_lowercase, ascii_uppercase
s = input()
if len(s) > 32 or s[0] in ['_', '-'] or s[-1] in ['_', '-']:
print(400)
elif all((c in ascii_lowercase or c in ascii_uppercase or c in '0123456789' or c in ['_', '-']) for c in s):
print(200)
else:
print(400)
hir355