Format integers Sergey Svistunov

Compute a checksum over the decimal representations of binary integers as fast as possible.

Input: 250 000 000 uint32 values in little-endian binary on STDIN (4 bytes each).

Output: A uint64 checksum computed as:

CRC = sum of number_crc(n) for each n

where number_crc(n) converts n to its decimal string and sums ascii(digit) * position over each digit (0-indexed from the left).

Example: For n = 42, the decimal string is "42", so number_crc(42) = ascii('4') * 0 + ascii('2') * 1 = 52 * 0 + 50 * 1 = 50.

Date AuthorLanguageStatus Score
Mar 5, 2026 19:09olliecrowolliecrowCPPg++13.3.0Error
Mar 4, 2026 02:10Josu San MartinJosu San MartinCSHARP9.0.13Success94,875+46.32 RP
Feb 20, 2026 23:17Aleksei ShahoikaAleksei ShahoikaCPPclang++18.1.3Success250,318+39.95 RP
Feb 20, 2026 22:56Aleksei ShahoikaAleksei ShahoikaCPPclang++18.1.3Error
Feb 20, 2026 22:51Aleksei ShahoikaAleksei ShahoikaCPPclang++18.1.3Error
Feb 20, 2026 22:39Aleksei ShahoikaAleksei ShahoikaCPPclang++18.1.3Error
Feb 19, 2026 03:25Josu San MartinJosu San MartinCPPg++13.3.0Success154,866
Feb 19, 2026 03:24Josu San MartinJosu San MartinCPPg++13.3.0Success127,236
Feb 19, 2026 03:22Josu San MartinJosu San MartinCPPg++13.3.0Success83,606+0.16 RP
Feb 19, 2026 03:19Josu San MartinJosu San MartinCPPg++13.3.0Success83,792
Feb 19, 2026 03:18Josu San MartinJosu San MartinCPPg++13.3.0Success84,567
Feb 19, 2026 03:14Josu San MartinJosu San MartinRUSTrust-1.85.1Success164,466
Feb 19, 2026 03:12Josu San MartinJosu San MartinRUSTrust-1.85.1Success161,296
Feb 19, 2026 03:05Josu San MartinJosu San MartinCPPg++13.3.0Success83,726
Feb 19, 2026 03:04Josu San MartinJosu San MartinCPPg++13.3.0Success106,408
Feb 19, 2026 02:55Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 02:46Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 02:14Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 02:09Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 02:07Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 02:06Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 02:05Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 01:42Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 01:40Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 01:37Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 01:35Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 01:34Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 01:32Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 01:30Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 01:27Josu San MartinJosu San MartinCPPg++13.3.0Success84,617
Feb 19, 2026 00:58Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:55Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:48Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:47Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:45Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:44Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:43Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:42Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:41Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:40Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:38Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:37Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:37Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:36Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:35Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:30Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:30Josu San MartinJosu San MartinCPPg++13.3.0Success83,846
Feb 19, 2026 00:28Josu San MartinJosu San MartinCPPg++13.3.0Error
Feb 19, 2026 00:11Josu San MartinJosu San MartinCPPclang++18.1.3Success87,953
Feb 18, 2026 23:56Josu San MartinJosu San MartinCPPg++13.3.0Success83,715+0.17 RP
Feb 18, 2026 23:54Josu San MartinJosu San MartinCPPg++13.3.0Success85,441
Feb 18, 2026 23:49Josu San MartinJosu San MartinCPPg++13.3.0Success83,834+1.11 RP
Feb 18, 2026 00:22olliecrowolliecrowCPPg++13.3.0Success174,928
Feb 14, 2026 07:50olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 07:43olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 07:36olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 07:06olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 06:59olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 06:52olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 06:30olliecrowolliecrowCPPg++13.3.0Success126,545
Feb 14, 2026 06:24olliecrowolliecrowCPPg++13.3.0Success102,776
Feb 14, 2026 06:14olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 06:02olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 05:12olliecrowolliecrowCPPg++13.3.0Success118,765
Feb 14, 2026 05:07olliecrowolliecrowCPPg++13.3.0Success126,510
Feb 14, 2026 05:01olliecrowolliecrowCPPg++13.3.0Success131,957
Feb 14, 2026 04:39olliecrowolliecrowCPPg++13.3.0Success104,543
Feb 14, 2026 03:51olliecrowolliecrowCPPg++13.3.0Success102,564
Feb 14, 2026 03:06olliecrowolliecrowCPPg++13.3.0Success102,765
Feb 14, 2026 03:01olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 02:55olliecrowolliecrowCPPg++13.3.0Success103,985
Feb 14, 2026 02:48olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 02:32olliecrowolliecrowCPPg++13.3.0Success102,608
Feb 14, 2026 02:26olliecrowolliecrowCPPg++13.3.0Success102,531+0.06 RP
Feb 14, 2026 01:50olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 01:46olliecrowolliecrowCPPg++13.3.0Success102,893
Feb 14, 2026 01:42olliecrowolliecrowCPPg++13.3.0Success102,894
Feb 14, 2026 00:52olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 00:46olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 00:42olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 00:32olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 00:28olliecrowolliecrowCPPg++13.3.0Error
Feb 14, 2026 00:19olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 23:44olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 23:39olliecrowolliecrowCPPg++13.3.0Success102,642
Feb 13, 2026 23:31olliecrowolliecrowCPPg++13.3.0Success170,971
Feb 13, 2026 23:09olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 22:45olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 22:42olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 22:38olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 22:33olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 22:28olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 22:19olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 22:15olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 22:05olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 22:00olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 21:55olliecrowolliecrowCPPg++13.3.0Error
Feb 13, 2026 21:35olliecrowolliecrowCPPg++13.3.0Success102,774
Feb 13, 2026 20:37olliecrowolliecrowCPPg++13.3.0Success103,149
Feb 13, 2026 20:31olliecrowolliecrowCPPg++13.3.0Success131,942