結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー osada-yumosada-yum
提出日時 2023-12-04 23:58:31
言語 Fortran
(gFortran 13.2.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 754 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 31,616 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-19 21:39:25
合計ジャッジ時間 1,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 20 ms
5,248 KB
testcase_05 AC 20 ms
5,248 KB
testcase_06 AC 20 ms
5,248 KB
testcase_07 AC 21 ms
5,248 KB
testcase_08 AC 21 ms
5,248 KB
testcase_09 AC 20 ms
5,248 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

program yukicoder_2562
  use, intrinsic :: iso_fortran_env
  implicit none
  integer(int32) :: t
  integer(int32) :: i
  read(input_unit, *) t
  do i = 1, t
     call solve()
  end do
contains
  impure subroutine solve()
    integer(int32) :: m
    integer(int32) :: ds(9)
    integer(int64) :: x
    integer(int32) :: i, j
    read(input_unit, *) m
    read(input_unit, *) ds(:)
    x = 0_int64
    do i = 1, size(ds)
       do j = 1, ds(i)
          x = x * 10_int64 + int(i, int64)
       end do
    end do
    x = x * 10_int64 ** 9
    ! write(error_unit, *) x, mod(x, m)
    x = x + mod(m - mod(x, m), m)
    ! write(error_unit, *) x, mod(x, m), x <= 10_int64 ** 18
    write(output_unit, '(i0)') x
  end subroutine solve
end program yukicoder_2562
0