結果
| 問題 | No.3497 Sign up for traP |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-04-18 00:36:59 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 240 bytes |
| 記録 | |
| コンパイル時間 | 313 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 65,408 KB |
| 最終ジャッジ日時 | 2026-04-18 00:38:04 |
| 合計ジャッジ時間 | 7,592 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 WA * 4 RE * 6 |
ソースコード
charset = '1234567890qwertyuiopasdfghjklzxcvbnm_-' s = input().strip() if not 1<=len(s)<=32: print(400) if s[0] in '-_' or s[1] in '-_': print(400) exit(0) for i in s: if i.lower() not in charset: print(400) exit(0) print(200)