結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー | 6soukiti29 |
提出日時 | 2019-07-18 23:32:07 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 811 bytes |
コンパイル時間 | 3,568 ms |
コンパイル使用メモリ | 65,692 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 05:51:22 |
合計ジャッジ時間 | 4,104 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | WA | - |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import sequtils,strutils var a : int64 b : int64 N = stdin.readline.parseInt for i in 1..N: var s = stdin.readline var t : int64 var u : int64 var s2 : string = "" var p : int64 = 1 for j,k in s: if k == '-': p *= -1 continue if k == '.': s2 = s[(j + 1) .. s.high] break t *= 10 t += ord(k) - ord('0') for j in 0..9: if s2.high < j: u *= 10 else: u *= 10 u += ord(s2[j]) - ord('0') a += t * p b += u * p if b >= 1_000_000_000_0: a += b div 1_000_000_000_0 b = b mod 1_000_000_000_0 if b < 0: b += 1_000_000_000_00 a -= 1 var bs = $b while bs.len < 10: bs &= '0' echo a,".",bs