結果

問題 No.2385 Parse Integer with Radix
ユーザー YTOKYTOK
提出日時 2023-07-21 21:57:50
言語 Julia
(2.11.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 99 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 453,996 KB
最終ジャッジ日時 2024-12-20 17:16:28
合計ジャッジ時間 12,415 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,875 ms
237,756 KB
testcase_02 AC 313 ms
238,652 KB
testcase_03 AC 315 ms
238,780 KB
testcase_04 AC 307 ms
238,396 KB
testcase_05 AC 316 ms
238,396 KB
testcase_06 AC 324 ms
239,040 KB
testcase_07 AC 384 ms
242,108 KB
testcase_08 AC 391 ms
241,080 KB
testcase_09 AC 390 ms
241,088 KB
testcase_10 AC 395 ms
241,336 KB
testcase_11 AC 386 ms
453,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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