結果
| 問題 | No.1915 Addition |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-13 13:24:13 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 39 ms / 2,000 ms |
| コード長 | 202 bytes |
| 記録 | |
| コンパイル時間 | 163 ms |
| コンパイル使用メモリ | 85,288 KB |
| 実行使用メモリ | 54,024 KB |
| 最終ジャッジ日時 | 2026-04-03 04:33:02 |
| 合計ジャッジ時間 | 1,815 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge5_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 10 |
ソースコード
'''input 3 2 10 100 ''' import sys input = lambda: sys.stdin.readline().rstrip() ################## for _ in range(int(input())): n = int(input()) s = str(n) m = int(s + '0'*len(s)) print(m)