結果

問題 No.2041 E-mail Address
ユーザー harurun
提出日時 2022-05-05 22:20:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 158 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-20 03:06:41
合計ジャッジ時間 1,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

S=opne(0).read().split()
assert(len(S)==1)
T=S[0]
for i in T:
  assert(i.islower() or i=="." or i=="(" or i==")")
assert(T.count("(")==1 and T.count(")")==1)
0