結果

問題 No.2385 Parse Integer with Radix
ユーザー YTOKYTOK
提出日時 2023-07-21 21:57:50
言語 Julia
(1.10.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 99 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 444,544 KB
最終ジャッジ日時 2024-05-19 20:57:39
合計ジャッジ時間 7,092 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 329 ms
238,912 KB
testcase_02 AC 300 ms
239,228 KB
testcase_03 AC 305 ms
238,652 KB
testcase_04 AC 306 ms
238,708 KB
testcase_05 AC 303 ms
239,032 KB
testcase_06 AC 309 ms
238,780 KB
testcase_07 AC 383 ms
241,592 KB
testcase_08 AC 380 ms
241,984 KB
testcase_09 AC 377 ms
241,468 KB
testcase_10 AC 384 ms
241,980 KB
testcase_11 AC 377 ms
444,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q = parse(Int,readline())
for _ in 1:q
	s = readline()
	x = Integer(Meta.parse(s))
	println(x)
end
0