結果

問題 No.8072 Sum of sqrt(x)
ユーザー hiro1729
提出日時 2024-09-01 20:26:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 70 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 76,708 KB
最終ジャッジ日時 2024-09-01 20:26:47
合計ジャッジ時間 22,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for i in range(N):
	x = input()
	assert('.' not in x)
0