結果

問題 No.2385 Parse Integer with Radix
ユーザー tatyamtatyam
提出日時 2023-07-17 18:12:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 58 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 54,572 KB
最終ジャッジ日時 2024-09-17 21:32:09
合計ジャッジ時間 1,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,640 KB
testcase_01 AC 42 ms
53,452 KB
testcase_02 AC 40 ms
53,056 KB
testcase_03 AC 40 ms
53,336 KB
testcase_04 AC 41 ms
53,432 KB
testcase_05 AC 41 ms
53,100 KB
testcase_06 AC 40 ms
52,972 KB
testcase_07 AC 41 ms
53,764 KB
testcase_08 AC 38 ms
53,156 KB
testcase_09 AC 41 ms
54,572 KB
testcase_10 AC 36 ms
52,896 KB
testcase_11 AC 37 ms
54,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
	print(eval(input()))
0